-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 KB
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "npx tsc",
"lint": "npx eslint .",
"build": "npm-run-all clean tsc",
"dev:start": "npm-run-all build start",
"local": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node .",
"test:unit": "DOTENV_CONFIG_PATH=./.env.test jest -i --verbose test/unit",
"test:integration": "DOTENV_CONFIG_PATH=./.env.test jest -i --detectOpenHandles --forceExit test/integration"
},
"dependencies": {
"dotenv": "16.3.1",
"express": "4.18.2",
"http-status": "1.5.3",
"winston": "3.8.2"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/http-errors": "2.0.1",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"jest": "29.3.1",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"prettier": "2.8.3",
"rimraf": "3.0.2",
"supertest": "6.3.2",
"ts-jest": "29.0.3",
"typescript": "5.1.6"
},
"author": "",
"license": "ISC"
}