-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.01 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
{
"name": "geckos-team-26",
"version": "1.0.0",
"description": "(A Chingu Voyage-4 remote development team)",
"scripts": {
"test": "mocha",
"installserver": "npm install",
"installclient": "cd client && npm install",
"updateall":
"concurrently --kill-others-on-fail \"npm run installserver\" \"npm run installclient\"",
"eslint-check":
"eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"lint:client": "eslint --ext .jsx,.js client/src/",
"lint:server": "eslint --ext .jsx,.js *.js",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev":
"concurrently --kill-others-on-fail \"npm run lint:server\" \"npm run lint:client\" \"npm run server\" \"npm run client\"",
"precommit": "lint-staged",
"build": "cd client && npm run build",
"heroku-postbuild":
"cd client && npm install --only=dev && npm install && npm run build"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/chingu-voyage4/Geckos-Team-26.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chingu-voyage4/Geckos-Team-26/issues"
},
"homepage": "https://github.com/chingu-voyage4/Geckos-Team-26#readme",
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^5.0.4",
"nodemon": "^1.17.1",
"prettier": "1.11.1"
},
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-jwt": "^5.3.1",
"fetch": "^1.1.0",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.0.9",
"randomstring": "^1.1.5",
"validator": "^9.4.1"
}
}