-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.31 KB
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
43
44
45
46
47
48
{
"name": "react-zombie",
"version": "0.0.1",
"description": "Skeleton React application with authentication and async actions",
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"body-parser": "~1.12.4",
"bootstrap": "3.3.5",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "~4.12.4",
"flux": "^2.0.3",
"hbs": "~2.9.0",
"jsonwebtoken": "^5.0.5",
"keymirror": "0.1.1",
"morgan": "~1.5.3",
"react": "0.13.3",
"react-router": "0.13.3",
"react-tap-event-plugin": "0.1.7",
"serve-favicon": "~2.2.1",
"superagent": "1.4.0",
"underscore": "1.8.3"
},
"devDependencies": {
"babelify": "6.3.0",
"browserify": "10.2.4",
"eslint": "^1.3.1",
"eslint-plugin-react": "^3.3.1",
"mocha": "^2.3.3",
"reactify": "1.1.1",
"should": "^7.1.0",
"should-http": "0.0.4",
"watchify": "3.3.1"
},
"scripts": {
"prestart": "npm run build",
"start": "node ./bin/www",
"lint": "node_modules/.bin/eslint.js src/",
"build": "browserify --extension=.jsx --extension=.js src/App.jsx > public/js/bundle.js",
"watch": "watchify --extension=.jsx --extension=.js src/App.jsx -o public/js/bundle.js --verbose --debug",
"test": "./node_modules/.bin/mocha tests"
},
"author": "Alexander Ray"
}