-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"private": true,
"scripts": {
"postinstall": "yarn workspace server postinstall",
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --no-daemon --concurrency 20",
"lint": "turbo run lint --no-daemon",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"preview": "turbo run preview --no-daemon --concurrency 20"
},
"packageManager": "[email protected]",
"devDependencies": {
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.4.1",
"turbo": "1.10.4"
},
"name": "rocket-game",
"workspaces": [
"packages/*",
"packages/*/pkg",
"packages-dev/*"
],
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": false,
"arrowParens": "avoid",
"endOfLine": "lf",
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
]
},
"dependencies": {
"immer": "^10.0.3",
"immutable": "^5.0.0-beta.4"
}
}