-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 948 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 948 Bytes
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
{
"name": "root",
"private": true,
"dependencies": {
"lerna": "^3.20.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"typescript": "^3.7.5"
},
"scripts": {
"bootstrap": "npm install && lerna bootstrap",
"build": "lerna run build",
"lint": "eslint -c .eslintrc.js . --ext .ts,.tsx",
"lint-errors": "eslint --quiet -c .eslintrc.js . --ext .ts,.tsx",
"start": "lerna run start --stream",
"start-dev": "lerna run start-dev --stream",
"heroku-postbuild": "lerna bootstrap && bash scripts/heroku-set-api-server-and-build.sh",
"heroku-migrate": ""
}
}