-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.06 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
{
"name": "univer-clipsheet",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "univer-clipsheet chrome extension",
"repository": {
"type": "git",
"url": "https://github.com/dream-num/univer-clipsheet.git"
},
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"prepare": "simple-git-hooks",
"clean": "rimraf dist && rimraf .turbo && turbo clean",
"build": "rimraf dist && turbo build",
"build:watch": "pnpm run build -- --watch",
"build:firefox": "cross-env __FIREFOX__=true turbo build",
"dev-server": "pnpm -F hmr build && pnpm -F hmr dev-server",
"dev": "cross-env __DEV__=true turbo dev --concurrency 20",
"dev:firefox": "cross-env __DEV__=true __FIREFOX__=true turbo dev --concurrency 20",
"test": "turbo test",
"type-check": "turbo type-check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:e2e": "playwright test"
},
"dependencies": {
"@wendellhu/redi": "0.16.1",
"clsx": "2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rxjs": "7.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.0",
"@playwright/test": "1.47.1",
"@types/chrome": "^0.0.268",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.38",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"tsup": "8.0.2",
"turbo": "^1.13.3",
"typescript": "5.4.5",
"vite": "^5.2.11"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"!(submodules/univer-clipsheet-core/**/)*": "eslint --fix"
}
}