-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 KB
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
{
"name": "create-node-app",
"bin": {
"create-node-app": "bin/createNodeApp.js"
},
"version": "1.4.3",
"description": "Create Node.js apps by running one command",
"main": "index.js",
"repository": "https://github.com/create-node/create-node-app",
"contributors": [
{
"name": "Seandon Mooy",
"email": "seandon@kubesail.com"
},
{
"name": "Dan Pastusek",
"email": "dan@kubesail.com"
}
],
"authors": [
"Seandon Mooy <seandon@kubesail.com>",
"Dan Pastusek <dan@kubesail.com>"
],
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.3",
"fs-extra": "^8.1.0",
"semver": "^6.3.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^4.1.2",
"cross-spawn": "^6.0.5",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^1.19.1",
"react": "^16.14.0"
},
"scripts": {
"start": "bash ./bin/dev.sh"
}
}