-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·41 lines (41 loc) · 1.01 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
{
"name": "ConsoleWindowApp",
"version": "0.0.1",
"description": "SaaS",
"repository": "https://github.com/liuhong1happy/ConsoleWindowApp",
"main": "reactjs/app.js",
"dependencies": {
"classnames": "^2.1.3",
"flux": "^2.0.0",
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"react": "^0.14.0",
"react-dom":"^0.14.0",
"crypto-js":"^3.1.5"
},
"devDependencies": {
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "^0.4.3",
"reactify": "^0.15.2",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1",
"less":"^2.5.3"
},
"scripts": {
"start": "watchify -o src/static/js/app.js -v -d reactjs/app.js",
"build": "browserify reactjs/app.js -t [envify --NODE_ENV production] | uglifyjs -cm > src/static/js/app.min.js",
"less":"less less/winapp.less src/static/css/winapp.css",
"test": "jest"
},
"author": "Bill Fisher",
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./reactjs"
}
}