-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
44
45
46
47
48
49
{
"name": "softwaretest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"dev": "nodemon --watch 'src/' --exec 'ts-node src/app.ts' -e ts",
"watch:debug": "nodemon --inspect=5858 -e ts,tsx --exec node -r ts-node/register ./src/app.ts",
"test:basic": "node --expose-gc ./node_modules/.bin/jest --logHeapUsage --maxWorkers=50%",
"test": "jest --maxWorkers=50%",
"test:cache": "jest --clearCache",
"test:watch": "jest --watch --maxWorkers=25%",
"test:integration": "jest -i --watch --silent"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.4",
"jest-mock-extended": "^2.0.4",
"nodemon": "^2.0.15",
"prisma": "^3.6.0",
"supertest": "^6.1.6",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"dependencies": {
"@prisma/client": "^3.5.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker-br": "^0.4.1",
"joi": "^17.4.2"
}
}