-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"redis": "^4.6.5",
"supertest": "^6.3.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.1",
"@types/node": "^16.18.23",
"@types/shelljs": "^0.8.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-node": "^4.1.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^10.1.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"main": "./dist/server.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "eslint --ext .ts .",
"fix-lint": "eslint --ext .ts --fix .",
"tsc": "tsc",
"build": "npm-run-all clean fix-lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node .",
"test": "jest"
}
}