-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "guardian",
"version": "1.0.0",
"engines": {
"node": "12.16.x"
},
"description": "guardian, b/e for ratenride",
"main": "src/server.js",
"scripts": {
"devold": "npm run build && cross-env NODE_ENV=test nodemon --exec node dist/server.js",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node src/server.js",
"build": "babel src --out-dir dist",
"serve": "node ./dist/server.js",
"prestart": "npm run build",
"oldstart": "pm2-runtime start ecosystem.config.js --env production",
"start": "node ./dist/pm2.js",
"pretest": "cross-env NODE_ENV=test eslint --ignore-path .gitignore .",
"test": "jest --detectOpenHandles --runInBand --forceExit --testTimeout=10000",
"eslint": "./node_modules/.bin/eslint --ignore-path .gitignore --ext js --fix . .config",
"deploy": "npm run build && npm run serve"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/testSetup.js"
]
},
"author": "bkarahan",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"admin-bro": "^2.0.1",
"admin-bro-expressjs": "^2.0.0",
"admin-bro-mongoose": "^0.4.1",
"babel-plugin-add-module-exports": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect": "^3.7.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"csv-parser": "^2.3.2",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-jwt": "^5.3.1",
"express-rate-limit": "^5.1.1",
"express-session": "^1.17.0",
"helmet": "^3.21.3",
"ip6addr": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mathjs": "^6.6.2",
"moment": "^2.24.0",
"mongoose": "^5.9.3",
"morgan": "^1.9.1",
"nodemailer": "^6.4.4",
"passport": "^0.4.1",
"passport-custom": "^1.1.1",
"passport-local": "^1.0.0",
"pm2": "^4.2.3",
"rate-limit-mongo": "^2.1.0",
"uuidv4": "^6.0.6",
"validator": "^12.2.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/register": "^7.8.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"nodemon": "^2.0.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
}
}