forked from Nike-Inc/referee
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.46 KB
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
{
"name": "root",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint": "5.12.0",
"eslint-plugin-flowtype": "^2.50.3",
"babel-eslint": "^9.0.0",
"jest-junit": "^12.0.0",
"lerna": "^3.14.1",
"prettier": "^1.17.1",
"typescript": "3.9.7"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"client-start": "yarn workspace client start",
"client-build": "yarn workspace client build",
"server-start": "yarn workspace server start",
"server-build": "yarn workspace server build",
"lint": "yarn workspaces run lint",
"format": "yarn workspaces run format",
"pretest": "yarn workspaces run lint",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"prepare-artifacts": "export CI=true && export SKIP_PREFLIGHT_CHECK=true && yarn && yarn bootstrap && yarn clean && yarn test && yarn build",
"start": "scripts/start.sh",
"kill": "killall -9 node"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"signalfx": "^7.0.1"
}
}