-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "nadsoft-assignment-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc && tsc-alias && node dist/index.js",
"start:dev": "nodemon -r tsconfig-paths/register src/index.ts",
"start:prod": "node dist/index.js",
"build": "tsc && tsc-alias",
"db:seed": "prisma db seed",
"db:reset": "prisma migrate reset",
"test": "jest --config ./tests/jest-e2e.json"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/supertest": "^6.0.2",
"nodemon": "^3.0.3",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"glob": "^10.3.10",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mysql": "^2.18.1",
"reflect-metadata": "^0.2.1",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2"
}
}