-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.88 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "light-sheet",
"private": true,
"version": "0.1.0",
"repository": "https://github.com/lippzhang/light-sheet",
"license": "MIT",
"scripts": {
"dev": "pnpm storybook",
"build": "zx ./scripts/build.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"docs:build": "zx ./scripts/build-docs.mjs",
"tsc": "tsc --noEmit",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx,.json ./packages",
"preinstall": "npx -y only-allow pnpm",
"postinstall": "pnpm --filter @light-sheet/formula-parser run build",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm exec changeset publish",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.27.11",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^7.3.2",
"@storybook/react-webpack5": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsonc": "^2.6.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"express": "^4.17.3",
"father": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.1.0",
"mongodb": "^4.5.0",
"prettier": "^2.5.1",
"storybook": "^7.3.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"ws": "^8.11.0",
"yorkie": "^2.0.0",
"zx": "^8.3.0"
},
"dependencies": {
"@types/uuid": "^8.3.4",
"cross-env": "^5.2.0",
"react": ">= 18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4",
"uuid": "^8.3.2",
"vuepress": "^1.9.10",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-seo": "^0.2.0",
"vuepress-plugin-sitemap": "^2.3.1"
},
"gitHooks": {
"pre-commit": "pnpm run lint"
},
"resolutions": {
"react": "^18.2.0",
"eslint": "^8.31.0"
},
"peerDependencies": {
"react": ">= 18.2.0"
}
}