-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
{
"name": "ump-project",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "cross-env NODE_PATH=./src NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_PATH=./src NODE_ENV=development nodemon ./bin/www",
"test": "jest",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"config": "^3.3.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"glob": "^7.1.6",
"http-errors": "~1.6.2",
"joi": "^17.2.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mongoose": "^5.9.21",
"morgan": "~1.9.0",
"multer": "^1.4.1",
"mysql": "^2.18.1",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5",
"sequelize": "^6.3.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"validator": "^13.1.1"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.3",
"jest": "^26.1.0",
"nodemon": "^2.0.6",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testEnvironment": "node"
}
}