forked from dream-num/univer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.58 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
{
"name": "univer",
"version": "1.0.0-pre-alpha",
"description": "Univer,Luckysheet 2.0 upgrade version",
"private": true,
"scripts": {
"test": "node scripts/test",
"test:ui": "pnpm run --filter @univer/style-universheet test",
"test:e2e": "pnpm run --filter @univer/base-sheets test:play",
"dev": "node scripts/dev",
"api": "node scripts/api",
"lighthouse-dev": "start /B node scripts/dev && lighthouse http://127.0.0.1:3103 --output html --output-path ./report.html",
"build": "node scripts/build.js",
"build:customd": "cd cli/src/templates/univer-custom-build && npm run build:d",
"clean": "npm cache clean --force && pnpm dlx rimraf node_modules **/node_modules/ package-lock.json yarn.lock pnpm-lock.yaml && pnpm install && pnpm dlx playwright install",
"node-server": "node scripts/server.js",
"univer-cli": "cd cli && npm run cli",
"postinstall": "node scripts/postinstall.js",
"prepare": "husky install",
"lint": "lint-staged"
},
"author": "DreamNum <msoffice2@126.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.22.0",
"@microsoft/api-documenter": "^7.18.1",
"@microsoft/api-extractor": "7.25.0",
"@playwright/test": "^1.18.1",
"@types/jest": "28.1.8",
"@types/node": "^13.11.1",
"@types/numeral": "^2.0.2",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-config-airbnb-typescript": "17.0.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"eslint-plugin-unused-imports": "2.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import-newlines": "1.2.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^4.1.0",
"find-process": "^1.4.7",
"husky": "^8.0.1",
"jest": "29.0.0",
"lighthouse": "^9.4.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tree-kill": "^1.2.2",
"ts-jest": "29.0.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.1-rc"
},
"lint-staged": {
"./packages/**/*.ts?(x)": [
"eslint --fix",
"git add"
]
}
}