-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.42 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
{
"name": "pos-backend",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "tsx watch src src/index.ts",
"test": "prisma migrate reset -f && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-coverage": "prisma migrate reset -f && node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"prisma": "./prisma/concat_schema.sh && prisma migrate dev --name init --preview-feature",
"prisma:deploy": "./prisma/concat_schema.sh && prisma migrate deploy --preview-feature",
"prisma:generate": "./prisma/concat_schema.sh && prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/swagger": "^8.9.0",
"@fastify/swagger-ui": "^1.9.3",
"@prisma/client": "^5.0.0",
"@sentry/node": "^7.73.0",
"@sentry/profiling-node": "^1.2.1",
"@types/jsonwebtoken": "^9.0.2",
"axios": "^1.6.1",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"fastify": "^4.19.1",
"fastify-plugin": "^4.5.0",
"fastify-schema-to-ts": "^1.0.1",
"json-schema-to-ts": "^2.9.2",
"jsonwebtoken": "^9.0.1"
},
"devDependencies": {
"@jest/globals": "^29.6.0",
"@types/crypto-js": "^4.1.3",
"@types/node": "^20.3.3",
"jest": "^29.6.0",
"nodemon": "^2.0.22",
"prisma": "^5.0.0",
"ts-jest": "^29.1.1",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
}
}