-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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": "boilerplate-backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn tsc",
"start": "yarn build && node dist/boostrap.js",
"dev": "nodemon"
},
"dependencies": {
"@prisma/client": "^3.8.1",
"@sentry/node": "^6.16.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.0.1",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"winston": "^3.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/luxon": "^2.0.9",
"@types/node": "^17.0.10",
"@types/uuid": "^8.3.0",
"es6-shim": "^0.35.6",
"nodemon": "^2.0.7",
"prisma": "^3.8.1",
"ts-node-dev": "^1.1.6"
},
"prisma": {
"schema": "src/database/schema.prisma"
}
}