-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "alfrid",
"version": "0.4.0",
"description": "WebGL 3D toolkit",
"main": "build/alfrid.js",
"directories": {
"example": "examples"
},
"scripts": {
"lint": "npm run lint:fix && eslint -c .eslintrc src/**",
"lint:fix": "eslint -c .eslintrc --fix src/**",
"start": "npm run dev",
"shader": "node ./tasks/shader-watcher.js",
"dev": "NODE_ENV=development webpack-dev-server --open",
"build": "NODE_ENV=production webpack --progress --colors",
"build:dev": "NODE_ENV=development webpack --progress --colors"
},
"author": "Yi-Wen Lin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yiwenl/Alfrid"
},
"bugs": {
"url": "https://github.com/yiwenl/Alfrid/issues"
},
"dependencies": {
"collada-parser": "^1.0.0",
"gl-matrix": "^2.4.0",
"parse-dds": "^1.2.1",
"scheduling": "^1.2.0"
},
"devDependencies": {
"assets-loader": "^0.5.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"css-loader": "^3.6.0",
"dat-gui": "^0.5.0",
"eslint": "^4.7.1",
"eslint-loader": "^1.9.0",
"fs-extra": "^4.0.2",
"glsl-utils": "github:yiwenl/glsl-utils",
"glslify": "^6.1.0",
"glslify-loader": "^2.0.0",
"node-sass": "^4.14.1",
"randomutils": "github:yiwenl/randomUtils",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"stats.js": "^0.17.0",
"style-loader": "^0.18.2",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.11.5"
}
}