-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.17 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
{
"name": "ramen",
"version": "0.0.0",
"private": true,
"repository": "github:noeldemartin/ramen",
"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: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\"",
"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\"",
"deploy": "noeldemartin-deploy-app noeldemartin/ramen ramen.noeldemartin.com",
"dev": "vite",
"dev:serve-pod": "community-solid-server -c @css:config/file.json -f ./solid-data",
"histoire": "histoire dev",
"lint": "noeldemartin-lint src cypress",
"postinstall": "patch-package",
"test": "vitest --run",
"test:ci": "vitest --run --reporter verbose",
"test:serve-app": "vite --port 5001",
"test:serve-pod": "community-solid-server -l warn"
},
"dependencies": {
"@aerogel/core": "next",
"@aerogel/plugin-i18n": "next",
"@aerogel/plugin-solid": "next",
"@aerogel/plugin-soukai": "next",
"@intlify/unplugin-vue-i18n": "^0.12.2",
"@noeldemartin/utils": "next",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"soukai": "next",
"soukai-solid": "0.5.2-next.b6340345e228903e404a02c1ed9be8fc95162e8f",
"tailwindcss": "^3.3.2",
"vue": "^3.3.0",
"vue-i18n": "9.3.0-beta.19"
},
"devDependencies": {
"@aerogel/cli": "next",
"@aerogel/cypress": "next",
"@aerogel/histoire": "next",
"@aerogel/vite": "next",
"@iconify/json": "^2.2.134",
"@noeldemartin/eslint-config-vue": "next",
"@noeldemartin/scripts": "next",
"@solid/community-server": "^7.0.1",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^20.3.1",
"autoprefixer": "^10.4.14",
"concurrently": "^8.2.0",
"cypress": "^12.17.0",
"eslint": "^8.40.0",
"histoire": "^0.17.6",
"patch-package": "^8.0.0",
"postcss-pseudo-classes": "^0.4.0",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"start-server-and-test": "^2.0.0",
"unplugin-icons": "^0.16.3",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.5.0",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.15"
},
"eslintConfig": {
"extends": [
"@noeldemartin/eslint-config-vue"
]
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 120
}
}