forked from makehuman-js/makehuman-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.45 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
71
72
73
74
75
{
"name": "makehuman-js",
"version": "0.1.2",
"description": "Builds 3D human characters in the browser",
"main": "src/bundle.js",
"repository": "makehuman-js/makehuman-js",
"author": "wassname",
"license": "AGPLv3",
"keywords": [
"3d",
"human",
"model",
"characters",
"makehuman"
],
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --inline --progress",
"start_windows": ".\\node_modules\\.bin\\webpack-dev-server --inline --progress",
"try_release": "NODE_ENV=production npm start",
"watch": "webpack --progress --watch",
"build": "webpack --progress",
"build:debug": "webpack --show-errors",
"release": "NODE_ENV=production webpack --progress",
"release_windows": "NODE_ENV=production webpack --progress",
"test": "./node_modules/.bin/webpack-dev-server --config webpack.test.config.js --open",
"test_windows": ".\\node_modules\\.bin\\webpack-dev-server --config webpack.test.config.js --open"
},
"dependencies": {
"d3-random": "^0.2.1",
"lodash": "^4.5.1",
"qs": "^6.3.0",
"three": "^0.82.1",
"tween": "^0.9.0",
"makehuman-data": "0.0.2"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs-simple": "^6.7.4",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-es2015-webpack": "^6.4.3",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.4.3",
"babel-runtime": "^6.3.19",
"bignumber": "^1.1.0",
"bignumber.js": "^2.3.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"chai-bignumber": "^1.0.0",
"chai-things": "^0.2.0",
"copy-webpack-plugin": "^4.5.2",
"eslint": "^3.10.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-import-resolver-webpack": "^0.7.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"exports-loader": "^0.6.3",
"file-loader": "^0.9.0",
"imports-loader": "^0.6.5",
"json-loader": "^0.5.4",
"jstat": "^1.5.3",
"mocha": "^2.4.5",
"raw-loader": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "2.1.0-beta.21",
"webpack-dev-server": "2.1.0-beta.10"
}
}