-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "rest-api",
"version": "1.0.0",
"description": "Restfull API",
"main": "index.js",
"scripts": {
"start": "npx tsc -w",
"dev": "npx nodemon",
"build": "tsc",
"format": "prettier --write .",
"prepare": "husky install",
"check-types": "tsc --pretty -noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js"
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged ng lint ng test",
"pre-push": "ng build --aot true"
}
},
"author": "Asep Septiadi",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.11",
"prettier": "3.2.5",
"pretty-quick": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"express": "^4.18.3",
"nodemon": "^3.1.0"
}
}