-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 2.08 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
{
"name": "blue-ocean-rewrite",
"version": "1.0.0",
"description": "Congratulations and welcome to your first day at Blue Ocean! We are literally an underwater agile software development company.",
"main": "index.js",
"scripts": {
"setup": "npm install && cd ./client && npm install && cd ../server && npm install",
"test": "cd ./client && npm test && cd ../server && npm test",
"launch": "cd ./client && npm run-script build && cd ../server && node bin/www &",
"launch-dev": "cd ./server && nodemon bin/www && cd ../client && npm run build-dev && webpack-dev-server &",
"start": "cd ./server && node bin/www",
"stop": "pkill --signal SIGINT DexServer",
"lint:client": "cd ./client && ./node_modules/.bin/eslint \"src/**/*.{js,jsx}\" && echo 'Your code has passed the linting guidelines' || echo 'Please fix the errors listed above'",
"lint:server": "cd ./server && ./node_modules/.bin/eslint \"routes/**/*.js\" 2>/dev/null && echo 'Your code has passed the linting guidelines' || echo 'Please fix the errors listed above'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selder18/blue-ocean-rewrite.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/selder18/blue-ocean-rewrite/issues"
},
"homepage": "https://github.com/selder18/blue-ocean-rewrite#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.13",
"mime-types": "^2.1.24",
"morgan": "^1.9.1",
"pg": "^7.12.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-react-app": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0"
}
}