-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 2.91 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "create-esnext-app",
"version": "0.16.8",
"description": "Opinionated ESNext application boilerplate generator.",
"main": "lib/index.js",
"bin": "index.js",
"<Settings>": "------------------------------ Application Settings ------------------------------",
"babel": {
"presets": [
"env",
"airbnb"
],
"plugins": [
"transform-decorators-legacy",
"transform-class-properties"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"eslintConfig": {
"root": true,
"extends": "airbnb-base",
"parser": "babel-eslint",
"env": {
"node": true,
"jest/globals": true
},
"plugins": [
"jest"
],
"rules": {
"semi": [
"error",
"never"
]
}
},
"lint-staged": {
"src/**/*.{js,jsx,css,less,scss}": [
"prettier-standard",
"git add"
]
},
"</Settings>": "------------------------ End of Application Settings ------------------------------",
"scripts": {
"precommit": "lint-staged",
"commit": "git add . && git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --ext .js lib",
"release": "standard-version --no-verify && git push --follow-tags origin master"
},
"repository": {
"type": "git",
"url": "https://github.com/jimzhan/create-esnext-app.git"
},
"keywords": [
"zero-configuration",
"alpine",
"application",
"app",
"babel",
"boilerplate",
"build-tools",
"build",
"cli",
"development",
"debian",
"docker",
"docker-compose",
"es6",
"es7",
"esnext",
"es2015",
"es2016",
"es2017",
"generator",
"nginx",
"pm2",
"scaffold",
"skeleton",
"template",
"tool"
],
"author": "Jim Zhan <jim.zhan@me.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jimzhan/create-esnext-app/issues"
},
"homepage": "https://github.com/jimzhan/create-esnext-app#readme",
"dependencies": {
"chalk": "^2.4.1",
"cross-spawn": "^5.1.0",
"deepmerge": "^2.1.0",
"handlebars": "^4.0.11",
"husky": "^0.14.3",
"inquirer": "^4.0.2",
"lint-staged": "^6.1.1",
"mkdirp": "^0.5.1",
"recursive-copy": "^2.0.9",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^5.2.8",
"@commitlint/config-conventional": "^5.2.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.7.0",
"jest": "^21.2.1",
"prettier-standard": "^7.0.3",
"standard-version": "^4.4.0"
}
}