-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "nodejs",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"start": "npx ts-node index.ts",
"test-ts": "ts-node-test test/test.ts",
"test": "jest",
"test:organizationLogin": "jest __tests__/organizationLogin.js",
"test:organizationVerifyToken": "jest __tests__/organizationVerifyToken.js",
"test:studentLogin": "jest __tests__/studentLogin.js",
"test:studentCheckLogon": "jest __tests__/studentCheckLogon.js",
"test:studyroomCreate": "jest __tests__/studyroomCreate.js",
"test:studyroomUpdate": "jest __tests__/studyroomUpdate.js",
"test:reservationCreate": "jest __tests__/reservationCreate.js"
},
"jest": {
"collectCoverage": true,
"verbose": true
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.1.3",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase": "^9.12.1",
"firebase-admin": "^11.2.0",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"mongoose": "^6.4.4",
"save": "^2.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"jest": "^29.3.1",
"ts-node-test": "^0.3.0",
"typescript": "^4.8.4"
}
}