-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "create-common-app",
"version": "0.1.4",
"description": "Create template project with one command",
"scripts": {
"copyfiles": "cp -r templates bin",
"dev": "yarn build && DEBUG=app:* node ./bin/src/index.js",
"build": "rimraf ./bin && tsc && yarn copyfiles && chmod u+x ./bin/src/index.js"
},
"keywords": [
"react",
"vite",
"next",
"next.js"
],
"repository": {
"type": "git",
"url": "https://github.com/guijiangheng/create-common-app"
},
"author": "guijiangheng <[email protected]>",
"license": "MIT",
"bin": {
"create-common-app": "./bin/src/index.js"
},
"files": [
"bin"
],
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.7",
"@types/node": "^17.0.21",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"copyfiles": "^2.4.1",
"eslint": "^8.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"chalk": "^4.1.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.3",
"json-stable-stringify-without-jsonify": "^1.0.1",
"kolorist": "^1.5.1",
"prompts": "^2.4.2",
"update-check": "^1.5.4"
}
}