-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "node-epxress",
"version": "1.0.0",
"description": "typescrip node express",
"main": "index.js",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"lint:ts": "eslint src/**/*.ts",
"pretty": "pretty-quick --staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"express": "^4.17.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:ts && yarn pretty"
}
}
}