-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "Nodejs-express-starter",
"version": "1.0.0",
"description": "Nodejs-expressjs starter kit with boilerplate code",
"main": "app.ts",
"scripts": {
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"serve": "node ./build/server.js",
"build": "rimraf ./build && tsc --incremental && tsc-alias",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"tsc -w\" \"nodemon -r tsconfig-paths/register ./build/server.js\"",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save",
"test": "jest --detectOpenHandles --forceExit --coverage --verbose",
"lint:fix": "eslint src --fix --ext .js,.jsx,.ts,.tsx .",
"nibble": "eslint-nibble src --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"prepare-ts": "npx ts-patch install -s"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^9.0.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"cors": "^2.8.5",
"eslint-nibble": "^8.1.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"jest": "^29.3.1",
"module-alias": "^2.2.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"ts-patch": "^2.1.0",
"tsconfig-paths": "^4.1.2",
"typescript-transform-paths": "^3.4.6"
},
"dependencies": {
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"http-status-codes": "^2.2.0",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.11.3",
"morgan": "^1.10.0",
"supertest": "^6.3.3",
"typescript": "^4.9.4",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}