-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "spyfall",
"version": "0.0.0",
"private": true,
"scripts": {
"start-wrap": "node --max-old-space-size=6144 --max-semi-space-size=1024 --noconcurrent_sweeping ./bin/www",
"start-dev": "nodemon ./bin/www",
"test": "jest",
"heroku-postbuild": "cd ./front && npm install && npm run build",
"start": "concurrently \"npm run start-wrap\" \"cd ./front && npm run build && npm run start\"",
"dev": "concurrently \"npm run start-dev\" \"cd ./front && npm run dev\"",
"poblate": "cd db/ && node PoblateDB"
},
"dependencies": {
"@shelf/jest-mongodb": "^1.1.5",
"bcrypt": "^4.0.1",
"concurrently": "^5.2.0",
"config": "^3.3.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"express-validator": "^6.4.0",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"mongodb": "^3.5.7",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"sequelize": "^5.21.8",
"uuid": "^7.0.3",
"ws": "^7.2.5"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"modulePathIgnorePatterns": [
"/front/"
]
}
}