-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "feedget-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Maurício Romagnoli <x0n4d0>",
"license": "ISC",
"scripts": {
"prebuild": "rimraf dist",
"build": "npx tsc -p tsconfig.build.json",
"start": "node dist/src/server.js",
"dev": "ts-node-dev ./src/server.ts",
"dev:docker": "npm run up && npm run dev",
"studio": "npx prisma studio",
"up": "docker-compose up -d",
"test": "jest",
"test:watch": "npm test -- --watchAll"
},
"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",
"prisma": "^3.13.0",
"rimraf": "^3.0.2",
"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"
}
}