-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 KB
/
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": "origami",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run server:dev",
"build": "NODE_ENV=production webpack --config ./webpack.config.js",
"server": "npm run server:dev",
"server:dev": "webpack-dev-server --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --inline --progress --profile --watch --content-base dist/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.14.62",
"@types/three": "^0.84.15",
"chroma-js": "^1.3.3",
"dat.gui": "^0.6.1",
"events": "^1.1.1",
"lodash": "^4.17.4",
"mathjs": "^3.12.0",
"popmotion": "^7.2.0",
"rxjs": "^5.4.0",
"stats-js": "^1.0.0-alpha1",
"three": "^0.86.0",
"three-orbit-controls": "^82.1.0",
"three-orbitcontrols-ts": "^0.1.2"
},
"devDependencies": {
"@types/core-js": "^0.9.41",
"@types/node": "^7.0.12",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"raw-loader": "^0.5.1",
"shader-loader": "^1.3.0",
"ts-loader": "^2.0.3",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}