-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
{
"name": "voyage-4",
"version": "0.1.0",
"description": "a cms",
"main": "backend/index.js",
"engines": {
"node": "8.9.1"
},
"dependencies": {
"body-parser": "^1.18.2",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"diff": "^3.5.0",
"es6-promisify": "^5.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"http": "0.0.0",
"mongodb": "^3.0.6",
"mongoose": "^5.0.7",
"mongoose-mongodb-errors": "0.0.2",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.4.0",
"slug": "^0.9.1",
"supervisor": "^0.12.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.1",
"dotenv": "^4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.0.1",
"prettier": "^1.13.6"
},
"scripts": {
"seed": "node scripts/seed.js",
"start": "node backend/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cross-env NODE_ENV=development supervisor -w backend backend/index.js",
"client": "node start-client.js",
"lint:fe": "cd frontend && npm run lint",
"lint:be": "node_modules/.bin/eslint backend",
"lint": "npm run lint:be && npm run lint:fe",
"test:fe": "cd frontend && npm test",
"test:be": "mocha ./backend/test/setup.js ./backend/**/*.test.js",
"test": "npm run test:be && npm run test:fe",
"heroku-postbuild": "cd frontend && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"frontend/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage4/Bears-Team-25"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chingu-voyage4/Bears-Team-25/issues"
},
"homepage": "https://github.com/chingu-voyage4/Bears-Team-25#readme"
}