-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 959 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": "flux-app",
"version": "0.0.3",
"description": "Example Flux architecture.",
"main": "js/app.js",
"repository": "https://github.com/agmcleod/desert",
"dependencies": {
"flux": "^2.1.1",
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"react": "^0.14.0",
"react-dnd": "^2.1.3",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^0.14.8",
"react-router": "~2.0.0"
},
"devDependencies": {
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "~0.1.17",
"reactify": "^0.15.2",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o ../dune/app/assets/javascripts/bundle.js -v -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > js/bundle.min.js",
"test": "jest"
},
"author": "Aaron McLeod",
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}