-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.61 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
{
"authors": [
{
"name": "Florian Wendelborn",
"url": "https://florianwendelborn.com"
},
{
"name": "Alexis Zeghers",
"url": "https://github.com/azeghers"
}
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.3",
"lerna": "^3.20.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "MIT",
"name": "connect-four",
"prettier": {
"arrowParens": "always",
"endOfLine": "lf",
"jsxBracketSameLine": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"private": true,
"repository": "[email protected]:FlashGamesRevival/connect-four",
"scripts": {
"build": "yarn run lerna run build",
"start:frontend": "yarn --cwd packages/core run build && yarn --cwd packages/frontend run start",
"start:backend": "yarn --cwd packages/backend run build && yarn --cwd packages/backend run start",
"watch:backend": "nodemon -e js,jsx,ts,tsx,json --watch packages/backend/ --exec \"yarn --cwd packages/backend run build && yarn --cwd packages/backend run start\"",
"watch:frontend": "nodemon -e js,jsx,ts,tsx,json --watch packages/core/source/ --exec \"yarn --cwd packages/core run build && yarn --cwd packages/frontend run start\""
},
"version": "0.0.0",
"workspaces": [
"packages/*"
]
}