-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "wesing-middleware",
"version": "1.0.0",
"description": "运营中台 wesing 项目转接层",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"debug": "cross-env INSPECT='--inspect' nodemon",
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit",
"lint-staged": "lint-staged -d",
"release": "standard-version",
"release:fast": "standard-version --release-as patch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "kurthe",
"license": "ISC",
"dependencies": {
"@types/node": "^14.0.13",
"cross-env": "^7.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.9",
"nodemon": "^2.0.4",
"standard-version": "^9.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}