-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.87 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
{
"name": "coh2stats",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/firebase/**"
]
},
"engines": {
"npm": "Please-use-yarn"
},
"scripts": {
"web": "yarn workspace @coh2stats/web",
"app": "yarn workspace @coh2stats/app",
"shared": "yarn workspace @coh2stats/shared",
"fix": "run-s fix:*",
"fix:eslint": "eslint --fix packages/**/*.{ts,tsx,js}",
"fix:prettier": "prettier --loglevel warn --write .",
"lint": "run-s lint:*",
"lint:eslint": "eslint packages/**/*.{ts,tsx,js}",
"lint:prettier": "prettier --check .",
"react-spring-issue-1078": "find node_modules -path \\*@react-spring/\\*/package.json -exec sed -i.bak 's/\"sideEffects\": false/\"sideEffects\": true/g' {} +",
"clean": "rm -fr node_modules && rm -fr packages/web/node_modules && rm -fr packages/app/node_modules",
"reinstall": "yarn run clean && yarn install",
"test-build": "yarn workspace @coh2stats/web build && yarn workspace @coh2stats/app make"
},
"version": "0.1.2",
"description": "FB Project for COH2 ladders",
"main": "index.js",
"author": "Petr Vecera",
"license": "MIT",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"babel-eslint": "10.1.0",
"eslint": "8.8.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-jest-dom": "4.0.1",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sonarjs": "0.11.0",
"firebase-tools": "13.7.2",
"npm-run-all2": "6.2.0",
"prettier": "2.8.8",
"source-map-explorer": "2.5.3",
"typescript": "4.9.5"
},
"dependencies": {
"date-fns": "2.25.0"
}
}