forked from vectordotdev/next-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1001 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
{
"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": "^8.0.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-styled-components": "^1.2.1",
"express": "^4.16.2",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"next": "^4.0.3",
"next-routes": "^1.1.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"standard": "^10.0.3",
"styled-components": "^2.2.1"
},
"now": {
"alias": "next-go"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
}
}