forked from dream-num/univer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "univer",
"version": "0.1.0-beta.1",
"private": true,
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev:demo": "turbo dev:demo",
"dev:storybook": "storybook dev -p 6006 --no-open",
"lint": "eslint --cache **/src/**/*.{tsx,ts}",
"lint:fix": "eslint --cache **/src/**/*.{tsx,ts} --fix",
"lint:style": "stylelint **/*.less",
"lint:types": "tsc --noEmit -p tsconfig.eslint.json",
"test": "turbo test -- --passWithNoTests",
"coverage": "turbo coverage -- --passWithNoTests",
"build": "turbo build",
"build:demo": "turbo build:demo",
"build:storybook": "storybook build"
},
"engines": {
"node": "^18.17.0",
"pnpm": "^8.6.2"
},
"author": "DreamNum Inc. <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@playwright/test": "^1.40.1",
"@storybook/addon-docs": "^7.6.7",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-vite": "^7.6.7",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@univerjs/design": "workspace:*",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.7",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-less": "^2.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint": "^15.11.0",
"turbo": "^1.11.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/src/**/*.{tsx,ts}": [
"eslint --fix"
],
"**/*.less": [
"stylelint --fix"
]
}
}