-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.36 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.36 KB
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
{
"name": "solid-focus",
"version": "0.3.2",
"private": true,
"type": "module",
"repository": "github:noeldemartin/solid-focus",
"scripts": {
"build": "vite build",
"cy:dev": "concurrently --kill-others \"npm run test:serve-app\" \"npm run test:serve-pod\" \"npm run cy:open\"",
"cy:open": "cypress open --config-file ./cypress/cypress.config.ts --e2e --browser chromium",
"cy:run": "cypress run --config-file ./cypress/cypress.config.ts",
"cy:test": "start-server-and-test test:serve-app http-get://localhost:5001 test:serve-pod http-get://localhost:3000 cy:run",
"cy:test-snapshots": "docker run -it -u `id -u ${whoami}` -e CYPRESS_SNAPSHOTS=true -v ./:/app -w /app cypress/base:18.16.0 sh -c \"npx cypress install && npm run cy:test\"",
"cy:test-snapshots:ci": "docker run -e CYPRESS_SNAPSHOTS=true -v ./:/app -w /app cypress/base:18.16.0 sh -c \"npx cypress install && npm run cy:test\"",
"dev": "vite",
"dev:serve-pod": "community-solid-server -c @css:config/file.json -f ./solid",
"lint": "noeldemartin-lint src cypress",
"test": "vitest --run",
"test:ci": "vitest --run --reporter verbose",
"test:serve-app": "vite --port 5001 --mode testing",
"test:serve-pod": "community-solid-server -l warn"
},
"dependencies": {
"@aerogel/core": "0.1.2",
"@aerogel/plugin-i18n": "0.1.2",
"@aerogel/plugin-local-first": "0.1.2",
"@aerogel/plugin-routing": "0.1.2",
"@aerogel/plugin-solid": "0.1.2",
"@aerogel/plugin-soukai": "0.1.2",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@noeldemartin/solid-utils": "^0.6.1",
"@noeldemartin/utils": "0.7.3",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@vivantjs/core": "^0.0.1",
"popmotion": "^11.0.5",
"reka-ui": "^2.2.0",
"soukai": "0.7.1",
"soukai-solid": "0.7.1",
"tailwindcss": "^4.1.3",
"vivant": "^0.0.1",
"vue": "^3.5.13",
"vue-i18n": "^11.1.2",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@aerogel/cli": "next",
"@aerogel/cypress": "next",
"@aerogel/vite": "next",
"@iconify/json": "2.2.340",
"@noeldemartin/eslint-config-vue": "next",
"@noeldemartin/eslint-plugin": "^0.1.0",
"@noeldemartin/scripts": "next",
"@solid/community-server": "^7.1.6",
"@total-typescript/ts-reset": "^0.4.2",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@vue/tsconfig": "^0.7.0",
"concurrently": "^8.2.0",
"cypress": "^13.17.0",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.33.0",
"prettier": "^3.5.3",
"prettier-eslint-cli": "^8.0.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"start-server-and-test": "^2.0.0",
"typescript": "^5.8.2",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.5.0",
"vite": "^6.2.2",
"vitest": "^3.0.9",
"vue-tsc": "^2.2.8"
},
"eslintConfig": {
"extends": [
"@noeldemartin/eslint-config-vue"
]
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 120
}
}