-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "template-node",
"version": "1.0.0",
"description": "template of node which in ts、eslint、prettier、commitlint、babel",
"keywords": [
"node-template",
"ts",
"eslint",
"prettier",
"commitlint",
"babel"
],
"homepage": "https://github.com/jsany/template-node#readme",
"bugs": {
"url": "https://github.com/jsany/template-node/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsany/template-node.git"
},
"license": "ISC",
"author": "daolou <jiangzhiguo2010@qq.com>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"check:ts": "tsc --noEmit --pretty",
"compile": "babel src --out-dir lib --copy-files --extensions \".ts\"",
"eslint:fix": "eslint --fix --ext .ts ./src/",
"prepare": "husky install",
"prettier:fix": "prettier --write -l \"./src/**/*\"",
"release": "standard-version"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@babel/runtime-corejs3": "^7.15.4",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^16.11.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"devmoji": "^2.3.0",
"eslint": "^8.0.1",
"eslint-config-alloy": "^4.5.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"sort-package-json": "^1.52.0",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
},
"engines": {
"node": "12"
}
}