This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
101 lines (101 loc) · 3.25 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
94
95
96
97
98
99
100
101
{
"version": "0.0.0",
"type": "module",
"types": "src/index.ts",
"main": "src/index.js",
"private": true,
"scripts": {
"build": "node ./scripts/build.js",
"bootstrap": "node ./scripts/bootstrap.js",
"dev": "vite",
"serve": "vite preview",
"test": "node ./bootstrap/dist/run-jest.js",
"lint": "eslint .",
"typecheck": "tsc -b",
"typecheck:serve": "tsc -b -w --pretty false",
"guides:reactivity:build": "mdbook build -d ../../docs/reactivity ./guides/reactivity",
"guides:reactivity": "mdbook serve -p 9005 -d ../../docs/reactivity ./guides/reactivity",
"jest:env:watch": "tsc -p ./jest -w",
"jest:env:build": "tsc -p ./jest",
"jest:cache:clear": "jest --clearCache"
},
"devDependencies": {
"@alex_neo/jest-expect-message": "^1.0.5",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@domtree/any": "workspace:*",
"@domtree/browser": "workspace:*",
"@domtree/flavors": "workspace:*",
"@domtree/interface": "workspace:*",
"@domtree/minimal": "workspace:*",
"@jest/environment": "^27.5.1",
"@jest/fake-timers": "^27.5.1",
"@jest/globals": "^27.5.1",
"@pnpm/filter-workspace-packages": "^4.4.22",
"@pnpm/logger": "^4.0.0",
"@simple-dom/interface": "^1.4.0",
"@simple-dom/parser": "^1.4.0",
"@simple-dom/serializer": "^1.4.0",
"@swc-node/jest": "^1.4.3",
"@swc/core": "^1.2.159",
"@swc/jest": "^0.2.20",
"@testing-library/jest-dom": "^5.16.2",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.1",
"@types/jest-expect-message": "^1.0.3",
"@types/jsdom": "^16.2.14",
"@types/lodash.zip": "^4.2.6",
"@types/node": "^17.0.21",
"@types/shelljs": "^0.8.11",
"@types/treeify": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "^27.5.1",
"chalk": "^4.1.2",
"dotenv-quokka-plugin": "^1.0.0",
"eslint": "^8.11.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"execjs": "^1.0.7",
"expect": "^27.5.1",
"fast-glob": "^3.2.11",
"find-packages": "^8.0.13",
"jest": "^27.5.1",
"jest-diff": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"jest-environment-node": "^27.5.1",
"jest-matcher-utils": "^27.5.1",
"jest-mock": "^27.5.1",
"jest-resolve": "^27.5.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"jest-util": "^27.5.1",
"jsdom": "^19.0.0",
"jsdom-quokka-plugin": "^1.0.16",
"lodash.zip": "^4.2.0",
"path-exists": "^5.0.0",
"read-file-safe": "^1.0.10",
"shelljs": "^0.8.5",
"swc": "^1.0.11",
"trace-unhandled": "^2.0.1",
"ts-jest": "^27.1.3",
"ts-node": "github:TypeStrong/ts-node",
"typescript": "^4.7.0-dev.20220408",
"watcher": "^1.2.0"
},
"nodemonConfig": {
"watch": [
"package.json",
"pnpm-workspace.yaml",
"scripts"
]
},
"dependencies": {
"promise-readable": "^6.0.0",
"shell-escape-tag": "^2.0.2"
}
}