-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "taxi-back",
"version": "1.0.0",
"description": "KAIST Taxi Party Matching Web Service",
"main": "app.js",
"dependencies": {
"@adminjs/express": "^5.1.0",
"@adminjs/mongoose": "^3.0.3",
"adminjs": "^6.8.7",
"ajv": "^8.12.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"aws-sdk": "^2.1386.0",
"axios": "^0.27.2",
"ci": "^2.2.0",
"connect-mongo": "^4.6.0",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-rate-limit": "^6.6.0",
"express-session": "^1.17.3",
"express-validator": "^6.14.0",
"firebase-admin": "^11.4.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.11.3",
"node-cron": "3.0.2",
"node-mocks-http": "^1.12.1",
"querystring": "^0.2.1",
"redis": "^4.2.0",
"response-time": "^2.3.2",
"socket.io": "^4.6.1",
"swagger-ui-express": "^4.6.0",
"validator": "^13.7.0",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"chai": "*",
"eslint": "^8.22.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "*",
"nodemon": "^2.0.14",
"supertest": "^6.2.4"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"start": "cross-env TZ='Asia/Seoul' npx nodemon app.js",
"test": "npm run sample && cross-env TZ='Asia/Seoul' npm run mocha",
"mocha": "cross-env TZ='Asia/Seoul' NODE_ENV=test mocha --recursive --reporter spec --exit",
"serve": "cross-env TZ='Asia/Seoul' NODE_ENV=production node app.js",
"lint": "npx eslint --fix .",
"sample": "cd sampleGenerator && npm start && cd .."
},
"author": "sparcs/taxi",
"license": "MIT"
}