-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.76 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "3dui",
"version": "0.0.1",
"description": "Playing with 3d UIs.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint src",
"coverage": "./node_modules/.bin/lab -S -c",
"lab": "./node_modules/.bin/lab -S -T src/test/transform.js src/test -I __core-js_shared__",
"test": "./node_modules/.bin/standard && ./node_modules/.bin/lab -S -T src/test/transform.js src/test -I __core-js_shared__"
},
"bin": {},
"repository": {
"type": "git",
"url": "git+https://github.com/massimiliano-mantione/fftt.git"
},
"author": "Massimiliano Mantione",
"license": "MIT",
"bugs": {
"url": "https://github.com/massimiliano-mantione/fftt/issues"
},
"homepage": "https://github.com/massimiliano-mantione/fftt#readme",
"dependencies": {
"babylonjs": "^2.4.0",
"css-layout": "^1.1.1",
"debonair": "0.0.13",
"konva": "^0.14.0",
"object-assign": "^4.1.0",
"react": "^15.1.0",
"react-bootstrap": "^0.30.2",
"react-dom": "^15.1.0",
"redux": "^3.5.2",
"source-map-support": "0.3.2",
"stream-buffers": "2.2.0",
"three": "^0.78.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "6.6.5",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "6.7.2",
"babel-traverse": "6.6.5",
"brfs": "^1.4.3",
"code": "^2.0.1",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-cli": "^1.1.0",
"eslint-plugin-flow-vars": "^0.3.0",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"lab": "8.0.1",
"mkdirp": "0.5.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.6",
"rimraf": "^2.5.2",
"serve-static": "^1.11.1",
"standard": "^7.1.2",
"static-server": "^2.0.2",
"string-streamer": "1.0.0",
"style-loader": "^0.13.1",
"transform-loader": "^0.2.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib/**",
"test/**",
"types/**"
],
"globals": [
"describe",
"it",
"Util",
"TreeNode",
"beforeEach",
"module",
"process"
]
}
}