-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 KB
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": "fiit-mtaa-app-backend",
"version": "1.0.0",
"description": "REST API",
"license": "MIT",
"contributors": [
{
"name": "PeterSkriba",
"email": "xskriba@stuba.sk"
},
{
"name": "fcaplak",
"email": "xcaplak@stuba.sk"
}
],
"scripts": {
"start": "nodemon -r dotenv/config",
"studio": "npx prisma studio",
"database:migrate": "npx prisma migrate dev",
"database:deploy": "npx prisma migrate deploy --preview-feature",
"generate": "npx prisma generate",
"seed": "npx prisma db seed --preview-feature"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@prisma/client": "^2.21.1",
"@types/convict": "^4.2.1",
"babel-plugin-module-resolver": "^4.1.0",
"bcryptjs": "^2.4.3",
"compile-run": "^2.3.4",
"convict": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.6",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/http-errors": "^1.8.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.16",
"@types/pg": "^7.14.9",
"prisma": "^2.21.1"
}
}