-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"private": true,
"license": "UNLICENSED",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "concurrently --kill-others \"tsc -w\" \"nodemon --experimental-specifier-resolution=node --watch dist ./dist/index.js\"",
"start": "node --experimental-specifier-resolution=node ./dist",
"test": "eslint . && node ./esbuild.cjs build",
"pretty": "prettier . --write",
"lint": "eslint . && tsc --noEmit && yarn pretty",
"prepare": "husky install"
},
"dependencies": {
"express": "^4.17.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"concurrently": "^6.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^7.0.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"typescript": "^4.4.3"
}
}