forked from WordPress/wordpress-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.86 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
{
"name": "wp-playground",
"version": "0.0.0",
"license": "(GPL-2.0-or-later OR MPL-2.0)",
"scripts": {
"dev": "nx dev playground-website",
"build": "nx build playground-website",
"preview": "nx preview playground-website",
"lint": "nx run-many --all --target=lint",
"test": "nx run-many --all --target=test",
"typecheck": "nx run-many --all --target=typecheck",
"build:all": "nx run-many --all --target=build",
"predeploy": "nx build docs-site",
"deploy": "gh-pages -d dist/docs -t true"
},
"private": true,
"dependencies": {
"classnames": "^2.3.2",
"comlink": "^4.4.1",
"file-saver": "^2.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1"
},
"devDependencies": {
"@convex-dev/typedoc-plugin-markdown": "3.14.0",
"@knodes/typedoc-plugin-pages": "0.23.1",
"@nrwl/devkit": "^15.8.6",
"@nrwl/esbuild": "^15.8.6",
"@nrwl/eslint-plugin-nx": "^15.8.6",
"@nrwl/jest": "15.8.6",
"@nrwl/js": "15.8.6",
"@nrwl/linter": "15.8.6",
"@nrwl/node": "^15.8.6",
"@nrwl/nx-plugin": "^15.8.6",
"@nrwl/react": "^15.8.6",
"@nrwl/rollup": "15.8.6",
"@nrwl/vite": "15.8.6",
"@nrwl/web": "15.8.7",
"@nrwl/webpack": "15.8.6",
"@nrwl/workspace": "15.8.6",
"@rollup/plugin-url": "^8.0.1",
"@swc-node/register": "^1.6.2",
"@swc/core": "^1.3.40",
"@testing-library/react": "14.0.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.4.0",
"@types/node": "18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "~0.25.8",
"@vitest/ui": "^0.25.8",
"dts-bundle-generator": "^7.2.0",
"esbuild": "^0.17.5",
"esbuild-plugin-copy": "^2.1.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"gh-pages": "5.0.0",
"glob": "^9.3.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jsdom": "~20.0.3",
"jsonc-eslint-parser": "^2.1.0",
"nx": "15.8.6",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"rimraf": "^4.4.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-ts": "^3.2.0",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typedoc": "0.23.27",
"typedoc-plugin-mdn-links": "3.0.3",
"typedoc-plugin-resolve-crossmodule-references": "0.3.3",
"typescript": "~4.9.5",
"vite": "^4.0.1",
"vite-plugin-dts": "~1.7.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-static-copy": "^0.13.1",
"vite-plugin-wasm": "^3.2.2",
"vite-tsconfig-paths": "^4.0.2",
"vitepress": "1.0.0-alpha.60",
"vitest": "^0.25.8",
"yargs": "^17.7.1"
}
}