-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "webgl-particle-simulation",
"version": "0.1.0",
"main": "./bundle/bundle.js",
"scripts": {
"clean": "rimraf bundle",
"prebuild": "npm run clean",
"ccapture": "mkdir -p bundle && cp node_modules/ccapture.js/build/CCapture.all.min.js bundle/ccapture.js && cp node_modules/ccapture.js/src/gif.worker.js bundle/gif.worker.js",
"prebuild:watch": "npm run clean && npm run ccapture",
"build": "NODE_ENV=production webpack",
"build:watch": "NODE_ENV=development webpack --progress --watch",
"lint:js": "eslint .",
"lint:js:fix": "npm run lint:js -- --fix",
"start": "http-server bundle -o",
"dev": "npm run build:watch & npm run start",
"predeploy": "npm run build",
"deploy": "git subtree push --prefix bundle origin gh-pages"
},
"dependencies": {
"a-big-triangle": "^1.0.3",
"canvas-loop": "^1.0.7",
"ccapture.js": "^1.1.0",
"gl-buffer": "^2.1.2",
"gl-fbo": "^2.0.5",
"gl-shader": "^4.2.1",
"gl-vao": "^1.3.0",
"glslify": "^6.3.1",
"ndarray": "^1.0.18",
"webgl-context": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"glslify-loader": "https://github.com:pqml/glslify-loader#master",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"imports-loader": "^0.8.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"style-loader": "^0.22.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"globals": {
"fetch": false,
"requestAnimationFrame": false
}
}
}