-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
51
52
53
54
55
56
57
58
{
"name": "dpc",
"version": "1.0.0",
"description": "Delivery Price Calculator",
"main": "dist/src/index.js",
"scripts": {
"build": "prisma generate && tsc --project ./tsconfig.build.json",
"start": "yarn build && node dist/src/index.js",
"test": "DATABASE_URL=postgres://postgres@localhost:5433/postgres prisma migrate reset && SECRET_KEY=testing DATABASE_URL=postgres://postgres@localhost:5433/postgres jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/isoldo/dpc.git"
},
"keywords": [
"delivery",
"price",
"calculator"
],
"author": "isoldo",
"license": "ISC",
"bugs": {
"url": "https://github.com/isoldo/dpc/issues"
},
"homepage": "https://github.com/isoldo/dpc#readme",
"type": "module",
"dependencies": {
"@prisma/client": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"libphonenumber-js": "^1.10.39",
"nodemailer": "^6.9.4",
"prisma": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.8",
"@types/nodemailer": "^6.4.9",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"babel-jest": "^29.6.2",
"jest": "^29.6.2",
"supertest": "^6.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}