forked from lyh0371/web-norm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (71 loc) · 1.94 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
{
"name": "web-norm",
"version": "1.0.16",
"description": "前端项目规范一键安装",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon ./index.ts",
"tsc": "tsc",
"build": "rm -rf dist && tsc && ts-node build/index.ts",
"serve": "ts-node ./index.ts",
"tsc-init": "tsc --init",
"version": "ts-node build/version.ts",
"commit": "npm run version && git add . && git-cz ",
"prepare": "husky install",
"release": "rm -rf dist && tsc && ts-node build/index.ts",
"w":"web-norm1 --en"
},
"bin": {
"web-norm": "./dist/index.js"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyh0371/web-norm.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lyh0371/web-norm/issues"
},
"homepage": "https://github.com/lyh0371/web-norm#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-angular": "^17.0.0",
"@commitlint/cz-commitlint": "^17.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.35",
"commitizen": "^4.2.4",
"cross-spawn": "^7.0.3",
"cz-customizable": "^6.3.0",
"husky": "^8.0.1",
"minimist": "^1.2.6",
"nodemon": "^2.0.16",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"eslint": "^7.25.0",
"prettier": "^2.7.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-config-prettier": "^8.5.0"
},
"dependencies": {
"cac": "^6.7.12",
"chalk": "^4.0.1",
"eslint": "^8.16.0",
"fs-extra": "^10.1.0",
"load-json-file": "^7.0.1"
}
}