-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
84 lines (84 loc) · 2.68 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
{
"name": "bugvilla",
"version": "1.0.0",
"description": "BugVilla Bug Tracker",
"main": "./server/server.js",
"scripts": {
"start": "node ./server/server.js",
"start:client": "cd client && npm start",
"server:debug": "nodemon --inspect ./server/server.js",
"server:watch": "nodemon ./server/server.js",
"heroku-prebuild": "cd client && npm install --dev",
"heroku-postbuild": "cd client && npm install && npm run build",
"develop": "concurrently \"npm run server:watch\" \"cd client && npm start\"",
"develop:ci": "concurrently \"npm start\" \"cd client && npm start\"",
"cy:open": "concurrently \"npm start\" \"cd client && npm run test:e2e\"",
"cy:run": "concurrently \"npm start\" \"cd client && npm run test:e2e:run\"",
"prod": "concurrently \"npm run server:watch\" \"cd client && serve -s build\"",
"test:e2e:ci": "cd client && npm run cy:run",
"test": "cd client && npm run test",
"lint": "eslint ./server/**",
"lint:fix": "eslint ./server/** --fix",
"pretty-quick": "pretty-quick --staged && lint-staged",
"prettier": "prettier --write **/*.{ts,js,css,html}"
},
"author": "Anurag Hazra <hazru.anurag@gmail.com>",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@sendgrid/mail": "^6.5.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-node": "^11.0.0",
"express": "^4.17.1",
"express-jwt-blacklist": "^1.1.0",
"express-mongo-sanitize": "^1.3.2",
"express-rate-limit": "^5.0.0",
"express-static-gzip": "^2.0.6",
"gridfs-stream": "^1.1.1",
"helmet": "^3.21.2",
"image-size": "^0.8.3",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.8.0",
"mongoose-auto-increment": "^5.0.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^4.0.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"request": "^2.88.2",
"sharp": "^0.25.2",
"slugify": "^1.3.6",
"socket.io": "^2.3.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"concurrently": "^5.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick"
}
},
"lint-staged": {
"*.{js}": "eslint ./server/** --cache --fix"
},
"engines": {
"node": "10.15.0"
}
}