forked from vectordotdev/next-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 984 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
{
"name": "next-go",
"description": "Production ready blog + boilerplate for Next.js",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_PATH=. NODE_ENV=production node server.js",
"lint": "standard 'api/*' 'components/*' 'layouts/*' 'pages/*' 'styles/*' 'routes.js' 'server.js'",
"precommit": "lint-staged"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-styled-components": "^1.1.7",
"express": "^4.15.4",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"next": "^3.0.6",
"next-routes": "^1.0.40",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"standard": "^10.0.3",
"styled-components": "^2.1.2"
},
"now": {
"alias": "next-go"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
},
"lint-staged": {
"*.js": ["standard --fix", "git add"]
}
}