-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "petkeeper-api",
"version": "0.0.0",
"private": true,
"scripts": {
"client": "cd client && npm run start",
"server": "nodemon ./bin/www",
"flask": "cd flask && python3 app.py",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run flask\"",
"test": "mocha",
"coverage": "nyc --reporter=html npm run test"
},
"dependencies": {
"apidoc": "^1.1.0",
"aws-sdk": "^2.1369.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"child-process": "^1.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.0.2",
"express-session": "^1.17.3",
"form-data": "^4.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"multer-s3-transform": "^2.3.2",
"mysql2": "^3.2.0",
"nodemailer": "^6.9.5",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-kakao": "^1.0.1",
"passport-naver": "^1.0.6",
"passport-oauth2": "^1.7.0",
"proj4": "^2.9.0",
"redis": "^4.6.10",
"sequelize": "^6.30.0",
"sharp": "^0.32.1"
},
"devDependencies": {
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.4.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
}
}