-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "online-scoreboard",
"version": "0.1.0",
"scripts": {
"postinstall": "node check-version.js",
"start": "yarn workspace online-scoreboard-client start",
"serve": "yarn workspace online-scoreboard-client serve",
"build": "yarn workspace online-scoreboard-client build",
"test": "yarn workspace online-scoreboard-client test",
"test:ci": "yarn workspace online-scoreboard-client test:ci",
"e2e": "yarn workspace online-scoreboard-e2e start",
"e2e:local": "yarn workspace online-scoreboard-e2e local",
"e2e:report": "yarn workspace online-scoreboard-e2e report",
"lint": "yarn e2e:lint && yarn client:lint",
"e2e:lint": "yarn workspace online-scoreboard-e2e lint",
"client:lint": "yarn workspace online-scoreboard-client lint",
"lint:ci": "yarn e2e:lint:ci && yarn client:lint:ci",
"client:lint:ci": "yarn workspace online-scoreboard-client lint:ci",
"e2e:lint:ci": "yarn workspace online-scoreboard-e2e lint:ci",
"server:dev:deploy": "yarn workspace online-scoreboard-server dev:deploy",
"server:stage:deploy": "yarn workspace online-scoreboard-server stage:deploy",
"server:prod:deploy": "yarn workspace online-scoreboard-server prod:deploy",
"server:dev:remove": "yarn workspace online-scoreboard-server dev:remove",
"server:stage:remove": "yarn workspace online-scoreboard-server stage:remove",
"server:prod:remove": "yarn workspace online-scoreboard-server prod:remove",
"server:dev:info": "yarn workspace online-scoreboard-server dev:info",
"server:stage:info": "yarn workspace online-scoreboard-server stage:info",
"server:prod:info": "yarn workspace online-scoreboard-server prod:info"
},
"repository": {
"type": "git",
"url": "[email protected]:Online-Scoreboard/online-scoreboard.git"
},
"npmClient": "yarn",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-scripts",
"**/react-scripts/**",
"**/unique-names-generator",
"**/unique-names-generator/**"
]
},
"license": "MIT",
"private": true,
"devDependencies": {
"@types/cucumber": "^6.0.1",
"@types/dotenv": "^8.2.0",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "24.0.23",
"@types/node": "^12.12.25",
"@types/reach__router": "^1.3.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/selenium-webdriver": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"add": "^2.0.6",
"babel-eslint": "^10.0.3",
"codacy-coverage": "^3.4.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"prettier": "^1.19.1",
"semver": "^7.1.1",
"ts-node": "^8.5.2",
"typescript": "3.6.4"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn test:ci"
}
},
"engines": {
"node": "12.x"
}
}