This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.65 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
{
"private": true,
"version": "0.0.2",
"name": "vitext-monorepo",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "run-s test-serve test-build",
"test-serve": "cross-env VITEXT_TEST=1 jest",
"test-build": "cross-env VITEXT_TEST=1 VITE_TEST_BUILD=1 jest",
"lint": "eslint packages/*/{src,types}/**",
"build": "yarn workspace vitext build",
"postinstall": ""
},
"devDependencies": {
"@jest/types": "^26.6.2",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/jest": "^26.0.19",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"cross-env": "^7.0.3",
"esbuild-jest": "^0.5.0",
"eslint": "^7.32.0",
"eslint-define-config": "^1.0.9",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"npm-run-all": "^4.1.5",
"playwright-chromium": "~1.9.2",
"prettier": "^2.3.0",
"sirv": "^1.0.10",
"slash": "^3.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"vite": "^2.3.6",
"yorkie": "^2.0.0"
},
"workspaces": {
"packages": [
"packages/*",
"packages/playground/*",
"packages/examples/*"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js,*.jsx": [
"prettier --write"
],
"*.ts,*.tsx": [
"eslint",
"prettier --parser=typescript --write"
],
"*.html": [
"prettier --write"
]
},
"dependencies": {}
}