-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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": "todomvc-for-all",
"dependencies": {
"@nanostores/persistent": "^0.6.0",
"@reduxjs/toolkit": "^1.8.5",
"alpinejs": "^3.10.3",
"astro": "^1.0.6",
"daisyui": "^2.24.0",
"lit": "^2.1.3",
"nanostores": "^0.6.0"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "yarn test:svelte run && yarn test:vue run && yarn test:solid run && vitest run && yarn test:react run && yarn test:rescript run && yarn test:elm run",
"test:react": "yarn workspace todomvc-react test",
"test:svelte": "yarn workspace todomvc-svelte test",
"test:vue": "yarn workspace todomvc-vue test",
"test:solid": "yarn workspace todomvc-solid test",
"test:rescript": "yarn workspace todomvc-rescript test",
"test:elm": "yarn workspace todomvc-elm test",
"test:alpine": "vitest --config ./vitest.alpine.config.ts",
"lint": "eslint src",
"serve": "npx http-server dist -p 8000"
},
"devDependencies": {
"@astrojs/lit": "^1.0.0",
"@astrojs/mdx": "^0.10.0",
"@astrojs/react": "^1.0.0",
"@astrojs/solid-js": "^1.0.0",
"@astrojs/svelte": "^1.0.0",
"@astrojs/tailwind": "^1.0.0",
"@astrojs/vue": "^1.0.0",
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/alpinejs": "^3.7.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitest/ui": "^0.22.1",
"@webcomponents/template-shadowroot": "^0.1.0",
"astro-integration-elm": "^0.0.9",
"autoprefixer": "^10.4.8",
"eslint": "^8.22.0",
"eslint-plugin-import": "^2.26.0",
"jsdom": "^20.0.0",
"postcss": "^8.4.16",
"tailwind": "^4.0.0",
"typescript": "^4.7.4",
"vite": "^3.0.9",
"vitest": "^0.26.3"
},
"private": true,
"workspaces": [
"todomvc-react",
"todomvc-vue",
"todomvc-svelte",
"todomvc-solid",
"todomvc-rescript",
"todomvc-elm"
],
"packageManager": "[email protected]"
}