-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
56
57
58
{
"name": "curve-frontend",
"version": "2.1.0",
"private": true,
"engines": {
"node": "20"
},
"workspaces": [
"apps/*",
"packages/*",
"tests"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev --parallel",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"typecheck": "turbo typecheck --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"prepare": "is-ci || husky",
"storybook": "turbo run storybook --filter=curve-ui-kit",
"storybook:build": "turbo run storybook:build --filter=curve-ui-kit"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/load": "19.5.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-custom": "*",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "15.2.10",
"prettier": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"turbo": "^2.1.2",
"typescript": "^5"
},
"packageManager": "[email protected]",
"lint-staged": {
"{apps,tests,packages}/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"resolutions": {
"eslint": "^8.57.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"typescript": "^5"
}
}