-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 917 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
{
"name": "Learnly",
"version": "0.0.3",
"description": "Learnly. Using Flux and React",
"main": "js/app.js",
"dependencies": {
"flux": "^2.0.1",
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"react": "^0.13.1",
"body-parser": "^1.12.2",
"express": "^4.12.3",
"express-handlebars": "^2.0.0",
"mongoose": "^4.0.0",
"socket.io": "^1.3.5"
},
"devDependencies": {
"browserify": "^9.0.0",
"envify": "^3.0.0",
"jest-cli": "~0.1.17",
"reactify": ">=1.1.0",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.js",
"start-server": "nodemon js/server/server.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}