-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "node-typscript",
"version": "1.0.7",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc --project ./",
"clean": "rimraf ./dist",
"dev": "nodemon",
"format": "pretty-quick --write --staged",
"release": "standard-version --skip.tag",
"start": "node -r dotenv/config dist/index.js dotenv_config_path=.env.development"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/express-pino-logger": "^4.0.2",
"@types/node": "^14.14.6",
"@types/uuid": "^8.3.0",
"dotenv": "^8.2.0",
"husky": "^4.3.0",
"nodemon": "^2.0.6",
"pino-pretty": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"http-status-codes": "^2.1.4",
"make-promises-safe": "^5.1.0",
"morgan": "^1.10.0",
"uuid": "^8.3.1"
}
}