-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "covid19-reports",
"private": true,
"engines": {
"node": ">=14",
"npm": ">=7",
"yarn": ">=1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "./start.sh",
"test": "./test.sh",
"build": "./build.sh",
"clean": "./clean.sh",
"lint": "yarn workspaces run lint",
"dev": "./dev.sh",
"dev-client": "./dev-client.sh",
"dev-server": "./dev-server.sh",
"start-db": "./start-db.sh",
"stop-db": "./stop-db.sh",
"client": "yarn workspace @covid19-reports/client",
"server": "yarn workspace @covid19-reports/server",
"shared": "yarn workspace @covid19-reports/shared",
"seed-dev": "yarn run server seed-dev",
"migration-create": "yarn run server migration-create",
"migration-generate": "yarn run server migration-generate",
"migration-revert": "yarn run server migration-revert",
"migration-run": "yarn run server migration-run"
},
"dependencies": {
"concurrently": "^6.2.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-chai-friendly": "^0.7.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.3.4"
}
}