forked from koba04/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-boilerplate",
"version": "0.4.0",
"description": "my React.js boilerplate",
"scripts": {
"watch": "watchify -d app/browser.js -o dist/bundle.js -v",
"build": "browserify -d app/browser.js > dist/bundle.js",
"start": "babel-node app/server",
"test": "jest",
"lint": "eslint app",
"doc": "esdoc -c esdoc.json",
"postinstall": "npm run build && npm run doc"
},
"repository": {
"type": "git",
"url": "https://github.com/koba04/react-boilerplate"
},
"keywords": [
"react"
],
"author": "koba04",
"license": "MIT",
"bugs": {
"url": "https://github.com/koba04/react-boilerplate/issues"
},
"homepage": "https://github.com/koba04/react-boilerplate",
"devDependencies": {
"babel-eslint": "^3.1.18",
"babel-jest": "^4.0.0",
"esdoc": "^0.1.2",
"eslint": "^0.23.0",
"eslint-plugin-react": "^2.5.2",
"jest-cli": "0.4.0",
"watchify": "^3.2.2"
},
"dependencies": {
"babelify": "^6.1.2",
"browserify": "^10.2.4",
"babel": "^5.5.6",
"classnames": "^2.1.2",
"express": "^4.12.4",
"flux": "^2.0.3",
"object-assign": "^3.0.0",
"react": "^0.13.3",
"react-router": "^0.13.3",
"superagent": "^1.1.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"node_modules/react"
]
},
"engines": {
"node": "0.12.0"
}
}