-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 969 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
41
42
{
"name": "expensetracker",
"version": "0.0.1",
"description": "Track your expenses!",
"repository": "git://git.ianfross.com/ifross/expensetracker",
"main": "app/app.js",
"dependencies": {
"flux": "^2.0.0",
"jquery": "^2.1.3",
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"react": "^0.13.0",
"underscore": "^1.7.0",
"fluxxor": "^1.5.2"
},
"devDependencies": {
"browserify": "^6.2.0",
"envify": "^3.0.0",
"es6ify": "^1.6.0",
"jest-cli": "~0.1.17",
"reactify": "^0.15.2",
"superagent": "^0.21.0",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o static/js/bundle.js -v -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > static/js/bundle.js",
"test": "jest"
},
"author": "Ian Ross",
"browserify": {
"transform": [
"reactify",
"envify",
"es6ify"
]
},
"jest": {
"rootDir": "./app"
}
}