-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.45 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
{
"type": "module",
"private": true,
"workspaces": {
"packages": [
"packages/eslint-config",
"packages/status-js",
"packages/colors",
"packages/icons",
"packages/components"
]
},
"keywords": [],
"scripts": {
"postinstall": "patch-package",
"prepare": "husky install",
"test": "turbo run test --filter=@status-im/* -- --run",
"dev": "turbo run dev --filter=@status-im/* --parallel",
"build": "turbo run build --filter=@status-im/*",
"lint": "turbo run lint --filter=@status-im/* --filter=web",
"typecheck": "turbo run typecheck",
"format": "prettier --ignore-path .gitignore --write .",
"clean": "turbo run clean && rimraf node_modules",
"storybook": "yarn workspace @status-im/components storybook"
},
"resolutions": {
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@status-im/eslint-config": "*",
"@tsconfig/strictest": "^2.0.0",
"@types/prettier": "^2.7.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"patch-package": "^6.5.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rimraf": "^4.4.1",
"turbo": "^1.8.8",
"typescript": "^5.6.2",
"vite": "^5.4.3",
"vite-node": "^0.29.8",
"vitest": "^0.29.8"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{md,mdx,yml,yaml,json}": [
"prettier --write"
]
}
}