-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "root",
"private": true,
"scripts": {
"compile": "turbo run compile",
"build": "turbo run build",
"api": "turbo run api",
"web": "turbo run web",
"start": "concurrently \"yarn api\" \"yarn web\"",
"preview": "turbo run preview",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "eslint --ignore-path .gitignore . && turbo run lint",
"lint:css": "stylelint \"apps/**/*.{css,ts,tsx}\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"postinstall": "manypkg check"
},
"dependencies": {
"@manypkg/cli": "latest",
"concurrently": "^8.0.1",
"eslint": "^8.38.0",
"eslint-config-react": "workspace:^",
"postcss-styled-syntax": "^0.4.0",
"prettier": "^2.8.7",
"stylelint": "^15.6.0",
"stylelint-config-standard": "^33.0.0",
"tsconfig": "workspace:^",
"turbo": "latest"
},
"packageManager": "yarn@3.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"resolutions": {
"styled-components": "^5"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
}
}