forked from codering/github-stars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 993 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 993 Bytes
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
{
"entry": {
"index": "./src/entry/index.jsx"
},
"dependencies": {
"classnames": "^2.2.3",
"dva": "^1.2.1",
"font-awesome": "^4.5.0",
"github-markdown-css": "^2.2.1",
"lodash.pick": "^4.1.0",
"marked": "^0.3.5",
"normalize.css": "^3.0.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"redux-actions": "^1.2.0",
"reselect": "^2.0.3",
"transform-runtime": "^0.0.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-dva-hmr": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"eslint": "1.10.x",
"eslint-config-airbnb": "3.x",
"eslint-plugin-react": "3.x",
"gh-pages": "^0.10.0",
"pre-commit": "1.x",
"rimraf": "^2.5.4",
"roadhog": "^0.4.3"
},
"pre-commit": [
"lint"
],
"scripts": {
"start": "roadhog server",
"build": "roadhog build",
"lint": "eslint --ext .js,.jsx src",
"deploy": "rimraf dist && npm run build && node ./scripts/deploy.js"
}
}