-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (81 loc) · 1.55 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "next-new",
"version": "1.0.0",
"description": "Create a new Next.js project",
"main": "index.js",
"repository": "ntwcklng/next-new",
"bin": {
"nn": "./bin/nn.js"
},
"files": [
"lib",
"bin",
"templates"
],
"scripts": {
"test": "xo && ava",
"test:watch": "ava --watch --match='!*SKIP_WATCH*'",
"prepush": "npm test",
"precommit": "lint-staged",
"lint": "xo"
},
"engines": {
"node": ">=6.2.0"
},
"ava": {
"failFast": true,
"files": "test/*.js",
"source": [
"bin/*.js",
"lib/*.js"
],
"require": [
"async-to-gen/register"
]
},
"xo": {
"extends": "prettier",
"ignores": [
"templates/**"
]
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"keywords": [
"next.js",
"zeit",
"scaffold",
"boilerplate",
"create"
],
"author": "Marvin Mieth <[email protected]>",
"license": "MIT",
"dependencies": {
"args": "^5.0.0",
"async-to-gen": "^1.3.2",
"chalk": "^2.0.1",
"copy-paste": "^1.3.0",
"copy-template-dir": "^1.3.0",
"execa": "^0.11.0",
"is-async-supported": "^1.2.0",
"mz": "^2.6.0",
"node-version": "^1.0.0",
"ora": "^3.0.0",
"rimraf": "^2.5.4",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint-config-prettier": "^2.0.0",
"husky": "^1.0.0",
"lint-staged": "^8.0.0",
"prettier": "^1.0.2",
"temp": "^0.8.3",
"xo": "^0.23.0"
}
}