-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
44
45
46
47
48
{
"name": "expressjs-ts-starter",
"version": "0.0.1",
"description": "Expressjs TypeScript Starter Template",
"private": false,
"main": "src/app.ts",
"author": "Fakhri19 <fakhriimaduddin19@gmail.com>",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"build": "tsc",
"start": "NODE_ENV=production node dist/app",
"start:production": "npm ci && npm build && npm start",
"dev": "nodemon -r dotenv/config src/app.ts",
"lint": "eslint . --ext .ts --fix"
},
"dependencies": {
"express": "^4.17.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}