forked from aws-samples/retail-demo-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.58 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
80
81
{
"name": "retail-demo-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"layer0:start": "concurrently \"npx webpack --watch --config layer0/webpack.layer0.config.js\" \"npx layer0 run --verbose\"",
"layer0:start:cache": "concurrently \"npx webpack --watch --config layer0/webpack.layer0.config.js\" \"npx layer0 run --cache\"",
"layer0:start:prod": "npx layer0 run --production",
"layer0:build": "npx webpack --progress --config layer0/webpack.layer0.config.js && npx layer0 build",
"layer0:deploy": "npx layer0 deploy --skip-build --site=layer0-aws-store-example --team=layer0-docs",
"layer0:app:build": "npm run build && npm run layer0:build",
"layer0:app:build:deploy": "npm run build && npm run layer0:build && npm run layer0:deploy",
"layer0:build:deploy": "npm run layer0:build && npm run layer0:deploy",
"layer0:update": "npm i -D @layer0/cli@latest && npm i @layer0/core@latest @layer0/prefetch@latest @layer0/devtools@latest"
},
"dependencies": {
"@aws-amplify/ui-vue": "^3.1.21",
"@mparticle/web-sdk": "^2.23.2",
"@optimizely/optimizely-sdk": "^4.9.2",
"amplitude-js": "^5.8.0",
"autoprefixer": "^10.4.13",
"aws-amplify": "^5.3.5",
"axios": "^1.2.4",
"jsonfile": "^6.1.0",
"mapbox-gl": "^1.12.0",
"maska": "^2.1.5",
"register-service-worker": "^1.7.2",
"sweetalert": "^2.1.2",
"uuid": "^9.0.0",
"vite-plugin-html": "^3.2.0",
"vue": "^3.3.4",
"vue-agile": "^2.0.0",
"vue-gtag": "^2.0.1",
"vue-router": "^4.2.4",
"vuex": "^4.1.0",
"vuex-persistedstate": "^4.1.0",
"workbox-webpack-plugin": "^6.5.4"
},
"devDependencies": {
"@layer0/cli": "^4.19.7",
"@layer0/core": "^4.18.11",
"@layer0/devtools": "^4.18.11",
"@layer0/prefetch": "^4.18.11",
"@vitejs/plugin-vue": "^4.2.3",
"concurrently": "^5.3.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.9.0",
"eslint-webpack-plugin": "^3.2.0",
"is-buffer": "^2.0.4",
"lodash": "^4.17.21",
"vite": "^4.4.6",
"webpack": "^5.79.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"defaults and supports es6-module"
]
}