-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.84 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
{
"name": "aerogel",
"private": "true",
"workspaces": [
"packages/cli",
"packages/vite",
"packages/core",
"packages/plugin-i18n",
"packages/plugin-routing",
"packages/plugin-soukai",
"packages/plugin-solid",
"packages/plugin-offline-first",
"packages/cypress",
"packages/histoire",
"packages/playground",
"packages/create-aerogel",
"packages/docs"
],
"scripts": {
"build": "npm run build -ws --if-present",
"cy:test": "npm run cy:test -ws --if-present",
"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\"",
"deploy": "./scripts/deploy.sh",
"dev": "npm run dev -ws --if-present",
"lint": "npm run lint -ws --if-present",
"postinstall": "patch-package",
"publish-next": "npm run publish-next -ws --if-present",
"test": "npm run test -ws --if-present",
"test:ci": "npm run test:ci -ws --if-present"
},
"devDependencies": {
"@iconify/json": "^2.2.131",
"@intlify/unplugin-vue-i18n": "^0.11.0",
"@noeldemartin/eslint-config-typescript": "0.1.1-next.213cffed3d1b24c286a9602ebd17085b58a673b4",
"@noeldemartin/eslint-config-vue": "0.1.1-next.6991d432d0368b4d59bb674c8bf0384e9eded802",
"@noeldemartin/scripts": "^0.2.1",
"@noeldemartin/testing": "0.0.0",
"@noeldemartin/utils": "0.6.0-next.036a147180df61c600c4599df30816ac860dbf06",
"@total-typescript/ts-reset": "^0.4.2",
"@types/mustache": "^4.2.2",
"cypress": "^12.17.0",
"eslint": "^8.40.0",
"histoire": "0.17.6",
"patch-package": "^7.0.0",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-tailwindcss": "^0.2.8",
"soukai": "0.5.2-next.be3adb0835e0733f54d217836edcbc83816d6057",
"soukai-solid": "0.5.2-next.e3b645a422bea5bd28673368ddf7230f60edd421",
"typescript": "~5.0.4",
"unplugin-icons": "^0.17.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.1",
"vitest": "^0.31.0",
"vue": "^3.3.0",
"vue-i18n": "9.3.0-beta.19",
"vue-router": "4.4.0",
"vue-tsc": "^1.6.5"
},
"overrides": {
"@noeldemartin/utils": "0.6.0-next.036a147180df61c600c4599df30816ac860dbf06"
},
"eslintConfig": {
"extends": [
"@noeldemartin/eslint-config-typescript"
]
},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
],
"printWidth": 120
}
}