-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.12 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
{
"name": "bears-project-8",
"description": "Chingu Voyage Project",
"version": "1.0.75",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyages/bears-project-8.git"
},
"author": "Bears Team 8",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-voyages/bears-project-8/issues"
},
"homepage": "https://github.com/chingu-voyages/bears-project-8#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"commitizen": "^3.0.7",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"eslint": "5.6.0",
"express": "^4.16.4",
"gravatar": "^1.8.0",
"jest": "^23.6.0",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.14",
"morgan": "^1.9.1",
"node": "^11.6.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"polished": "^2.3.3",
"supertest": "^3.3.0",
"validator": "^10.9.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.7",
"prettier": "^1.15.3"
},
"scripts": {
"test:server": "jest --detectOpenHandles --runInBand",
"test:client": "npm run test --prefix client",
"test": "concurrently \"npm:test:server\" \"npm:test:client\" --scripts-prepend-node-path",
"start": "node server.js",
"server": "nodemon server.js --ignore __tests__",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm:server\" \"npm:client\" --kill-others",
"build": "cross-env NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"heroku-postbuild": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testURL": "http://localhost/",
"setupTestFrameworkScriptFile": "./testSetup.js",
"testPathIgnorePatterns": [
"client/"
]
},
"engines": {
"node": ">=8.6.0"
}
}