-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "typescript-swapi-middleware",
"version": "1.0.0",
"description": "Simple movies middleware.",
"keywords": [
"api",
"express",
"prisma",
"typescript"
],
"main": "index.js",
"scripts": {
"test": "jest --watchAll ",
"test-unit": "jest --watchAll unit.test.ts",
"test-api": "jest --watchAll --runInBand integration.test.ts",
"start": "nodemon index.ts"
},
"engines": {
"node": "v14.19.0"
},
"author": "Wojciech Szmelczerczyk <[email protected]>",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.15.1",
"ajv": "^8.11.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"exceljs": "^4.3.0",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.42",
"@types/supertest": "^2.0.12",
"esbuild-register": "^3.3.3",
"jest": "^28.1.1",
"prisma": "^3.15.1",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
}
}