-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "windchime-simulation",
"version": "1.0.0",
"description": "Windchime Simulation built with Three.js and Ammo.js",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel dev:server lint:watch",
"dev:server": "webpack-dev-server --hot",
"watch": "webpack -w -d",
"build": "webpack -p",
"lint": "node_modules/.bin/esw webpack.config.* src --color",
"lint:watch": "npm run lint -- --watch --fix"
},
"keywords": [
"windchime", "simulation", "physics", "three.js", "ammo.js"
],
"author": "kirittanna",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/preset-env": "7.2.0",
"babel-eslint": "^10.1.0",
"babel-loader": "8.0.4",
"css-loader": "^3.5.2",
"eslint": "5.10.0",
"eslint-watch": "4.0.2",
"html-webpack-plugin": "^4.2.0",
"npm-run-all": "4.0.2",
"style-loader": "^1.1.4",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"ammo-debug-drawer": "^1.0.1",
"three": "^0.115.0"
}
}