-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 2.16 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
42
43
44
45
46
{
"name": "particle-system",
"version": "1.0.0",
"description": "Particle System ES6/ASM.js/WebASM Project",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-lib-dev": "webpack --watch --progress --colors --config ./webpack/particleLib/babel/webpack.config.development.js",
"build-lib-prod": "webpack --progress --colors --config ./webpack/particleLib/babel/webpack.config.production.js",
"build-lib-traceur-dev": "webpack --watch --progress --colors --config ./webpack/particleLib/traceur/webpack.config.development.js",
"build-lib-traceur-prod": "webpack --progress --colors --config ./webpack/particleLib/traceur/webpack.config.production.js",
"build-asm-test": "webpack --progress --colors --config ./webpack/test-es6-vs-asm/webpack.config.js",
"build-wasm-test": "webpack --progress --colors --config ./webpack/test-es6-vs-wasm/webpack.config.js",
"build-viewer-test": "webpack --progress --colors --config ./webpack/test-viewer/webpack.config.js",
"build-three-test": "webpack --progress --colors --config ./webpack/test-three.js/webpack.config.js",
"build-transpiler-test": "webpack --progress --colors --config ./webpack/test-babel-vs-traceur/webpack.config.js",
"build-tests": "npm run build-asm-test && npm run build-wasm-test && npm run build-transpiler-test && npm run build-viewer-test && npm run build-three-test"
},
"author": "Philippe Leefsma",
"dependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babylonjs": "2.4.0",
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"css-loader": "^0.23.1",
"dat-gui": "0.5.0",
"debug": "2.2.0",
"express": "^4.14.0",
"file-loader": "^0.8.5",
"image-webpack-loader": "^1.6.3",
"imports-loader": "0.6.5",
"jquery": "^2.2.0",
"json-loader": "^0.5.4",
"jsoneditor": "^5.5.6",
"lodash": "^4.11.1",
"stats-js": "1.0.0-alpha1",
"style-loader": "^0.13.0",
"systemjs": "^0.19.22",
"three-js": "79.0.0",
"webpack": "^1.12.13",
"webpack-traceur-loader": "^0.3.0"
}
}