-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 946 Bytes
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": "fallertrack-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"build": "echo \"No build step required\"",
"deploy": "vercel deploy --prod",
"test": "jest --config jest.config.js --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@google-cloud/storage": "^7.16.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"firebase-admin": "^11.11.0",
"google-auth-library": "^9.15.1",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"expect": "^29.7.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"jest-environment-node": "^29.7.0",
"vercel": "^32.5.0"
}
}