-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "braintree-app",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_ENV=development vite build --mode development",
"build": "NODE_ENV=production vite build --mode production",
"watch": "NODE_ENV=development vite --mode development --base /_vite_",
"eslint": "eslint ./assets",
"eslint-fix": "eslint ./assets --fix",
"tsc": "vue-tsc --noEmit"
},
"dependencies": {
"@shopware-ag/entity-schema-types": "6.9.0",
"@shopware-ag/meteor-admin-sdk": "5.6.1",
"@shopware-ag/meteor-component-library": "3.14.0",
"pinia": "^2.3.0",
"vue": "3.4.31",
"vue-i18n": "^11.0.1"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.13.0",
"@types/node": "^22.10.5",
"@vitejs/plugin-legacy": "^6.0.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.2.0",
"eslint": "^9.16.0",
"eslint-plugin-vue": "^9.32.0",
"sass": "^1.83.1",
"typescript": "~5.6.3",
"vite": "^6.0.7",
"vite-plugin-vue-devtools": "^7.7.0",
"vue-tsc": "^2.2.0"
},
"overrides": {
"vue": "3.4.31"
},
"engines": {
"node": ">=20.9.0 <21"
}
}