-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "poc-kpi",
"version": "1.0.0",
"description": "proof of concept for kpi into my3d",
"repository": {
"type": "git",
"url": "git+https://github.com/my3D-Team/poc-kpi.git"
},
"author": "ndamie",
"bugs": {
"url": "https://github.com/my3D-Team/poc-kpi/issues"
},
"homepage": "https://github.com/my3D-Team/poc-kpi#readme",
"scripts": {
"start": "watchify --debug app/js/main.js -o app/bundle.js -v -d",
"build": "browserify --debug app/js/main.js | exorcist app/bundle.js.map | uglifyjs -cm > app/bundle.js"
},
"dependencies": {
"amcharts": "amcharts/amcharts3",
"flux": "^2.0.1",
"keymirror": "~0.1.0",
"lodash": "^3.10.0",
"object-assign": "^1.0.0",
"react": "^0.13.3"
},
"devDependencies": {
"envify": "^3.0.0",
"reactify": "^1.1.1",
"uglify-js": "~2.4.15",
"watchify": "^3.4.0",
"browserify": "^10.2.4",
"exorcist": "^0.4.0"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}