-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "api",
"version": "1.0.4",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@prisma/client": "4.13.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"stripe": "^12.7.0",
"swagger-ui-express": "^4.6.3",
"uuid": "^9.0.0"
},
"scripts": {
"migrations": "npx prisma migrate dev",
"build": "tsc",
"dev": "nodemon --config nodemon.json src/index.ts",
"start": "tsc && node dist/index.js",
"test": "jest",
"prepush": ""
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.5.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prisma": "^4.14.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}