-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
41 lines (41 loc) · 1018 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "discover-threejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run copy-three && cross-env NODE_ENV=dev npm run run-hugo",
"production": "npm run run-hugo",
"copy-three": "node scripts/copy-three.cjs",
"run-hugo": "node scripts/run-hugo.cjs"
},
"author": "Lewy Blue",
"license": "MIT",
"dependencies": {
"clipboard": "^2.0.6",
"codemirror": "^5.55.0",
"file-saver": "^2.0.2",
"katex": "^0.11.1",
"loading-attribute-polyfill": "^2.0.0",
"optiscroll": "^3.2.1",
"select": "^1.1.2",
"three": "^0.136.0"
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.11.5",
"fs-extra": "^9.1.0",
"postcss": "^8.4.5",
"postcss-cli": "^8.3.1"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}