-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.67 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
{
"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",
"launch": "cd ./client && npm run-script build && cd ../server && node bin/www && cd ../client webpack-dev-server &",
"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": {
"dotenv": "^8.0.0"
},
"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"
}
}