-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 923 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "Server of the widget",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/server.ts",
"test": "jest",
"build": "npx tsc",
"start": "node dist/server.js"
},
"keywords": [],
"author": "Pedro Soares",
"license": "ISC",
"devDependencies": {
"@swc/jest": "^0.2.20",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/nodemailer": "^6.4.4",
"jest": "^28.0.3",
"prettier": "2.6.2",
"prisma": "^3.13.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"nodemailer": "^6.7.5"
}
}