-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "onr-react-ui",
"private": true,
"workspaces": [
"examples/*",
"examples/**/apps/*",
"examples/**/plugins/*",
"packages/*",
"plugins/*"
],
"scripts": {
"start": "turbo run start --parallel",
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"storybook": "turbo run storybook",
"lint": "turbo run lint --parallel",
"format": "turbo run format --parallel",
"test": "turbo run test --parallel",
"test:ci": "turbo run test --concurrency=1",
"test:watch": "yarn test --watch",
"prepublishOnly": "yarn build",
"postinstall": "husky install"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@onr/commitlint-config": "^1.4.3",
"@onr/prettier-config": "^2.0.1",
"@onr/tsconfig": "^1.0.0",
"@types/jest": "^29.5.12",
"antd": "^5.20.3",
"commitlint": "^19.4.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"next": "^13.5.6",
"prettier": "^2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"styled-components": "^6.1.2",
"syncpack": "^11.2.1",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"turbo": "^2.0.14"
},
"prettier": "@onr/prettier-config",
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint -c .eslintrc.js --fix",
"prettier --write"
]
},
"packageManager": "[email protected]"
}