-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 971 Bytes
/
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
{
"name": "typescript-express-starterkit",
"version": "1.0.0",
"description": "Starterkit for an express app",
"main": "index.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"build": "tsc",
"start:prod": "yarn build && NODE_ENV=production node out/index.js",
"start:dev": "NODE_ENV=development nodemon --ext ts --exec ts-node src/index.ts"
},
"keywords": [],
"author": "bugdebugger",
"license": "ISC",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@types/express": "^4.17.20",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.0.3"
}
}