This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "game-slot",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"prettier": "^2.3.2",
"typescript": "^4.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"lerna": "npx lerna",
"clean": "npx lerna clean -y",
"bootstrap": "lerna bootstrap",
"code:backend": "code game-slot/backend",
"code:frontend": "code game-slot/frontend",
"format": "prettier --write \"game-slot/**/*.{ts,js,tsx,jsx}\"",
"lint": "eslint --fix",
"start:backend": "yarn --cwd game-slot/backend dev",
"start:frontend": "yarn --cwd game-slot/frontend start",
"serve:backend": "yarn --cwd game-slot/backend start",
"serve:frontend": "yarn --cwd game-slot/frontend serve",
"remove:backend": "yarn --cwd game-slot/backend remove",
"remove:frontend": "yarn --cwd game-slot/frontend remove",
"test:frontend": "yarn --cwd game-slot/frontend test --watchAll=false",
"update:lib": "yarn --cwd game-slot/backend update:lib",
"prepare": "husky install",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"radium": "^0.26.1"
}
}