-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "rent-check",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"init": "run-p init:**",
"init:client": "npm install --prefix client",
"init:server": "npm install --prefix server",
"init:root": "npm install",
"test": "run-s test:**",
"test:server": "npm test --prefix server",
"test:client": "npm test --prefix client",
"test-coverage": "run-s test-coverage:**",
"test-coverage:client": "npm run test:coverage --prefix client",
"test-coverage:server": "npm run test:coverage --prefix server",
"coverage": "codecov",
"dev": "run-p dev:**",
"dev:server": "npm start --prefix server",
"dev:client": "npm start --prefix client",
"start": "node server/bin/app",
"build": "npm run build --prefix client",
"heroku-prebuild": "npm i && npm run init && npm run database:build:production --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yalla-coop/rent-check.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yalla-coop/rent-check/issues"
},
"homepage": "https://github.com/yalla-coop/rent-check#readme",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"codecov": "^3.6.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.18.2"
}
}