-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 954 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
36
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"author": "Gabriel Moura",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"start": "node dist/server.js",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.1",
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/mongoose": "^5.10.1",
"@types/multer": "^1.4.4",
"@types/node": "^14.14.10",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"supertest": "^6.0.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@google-cloud/storage": "^5.5.0",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"mongoose": "^5.10.15",
"multer": "^1.4.2"
}
}