-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "@wang1212/create-web-app",
"version": "0.7.4",
"keywords": [
"web-app",
"SPA",
"PWA",
"webpack4",
"babel7",
"jest",
"typescript",
"eslint",
"react.js",
"redux.js"
],
"description": "Create PWA(Progressive Web App) project development environment startup configuration.",
"homepage": "https://github.com/wang1212/create-web-app#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wang1212/create-web-app.git"
},
"bugs": {
"url": "https://github.com/wang1212/create-web-app/issues"
},
"license": "MIT",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"author": "wang1212",
"bin": {
"create-web-app": "index.js",
"create-pwa": "index.js"
},
"scripts": {
"prepare": "husky install",
"lint": "eslint . --no-eslintrc --config=.eslintrc.cjs --ext .js,.cjs,.mjs --fix --quiet --cache --cache-location=node_modules/.cache/.eslintcache --format=pretty",
"commit": "cz",
"release": "standard-version"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"bin/",
"templates/",
"index.js"
],
"dependencies": {
"chalk": "^5.1.2",
"fs-extra": "^10.1.0",
"inquirer": "^9.0.0",
"ora": "^6.1.1"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@wang1212/eslint-config": "0.2.1",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.23.0",
"eslint-formatter-pretty": "4.1.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"standard-version": "9.5.0"
}
}