forked from plentymarkets/plentyshop-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 3.02 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
{
"name": "@plentymarkets/plentyshop-pwa",
"version": "1.2.0",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*"
],
"scripts": {
"prepare": "is-ci || husky install",
"update:sdk": "yarn up @plentymarkets/shop-api",
"setup": "yarn && yarn build && yarn dev",
"turbo:disable-telemetry": "turbo telemetry disable",
"build": "yarn turbo:disable-telemetry && turbo run build",
"build:analyze": "yarn turbo:disable-telemetry && turbo run build:analyze",
"dev": "yarn turbo:disable-telemetry && turbo run dev",
"start": "yarn turbo:disable-telemetry && turbo run start",
"lint": "yarn turbo:disable-telemetry && turbo run lint",
"lint:fix": "yarn turbo:disable-telemetry && turbo run lint:fix",
"format": "prettier --check \"**/*.{ts,vue,css,scss,md}\"",
"format:fix": "prettier --write \"**/*.{ts,vue,css,scss,md}\"",
"clean": "npx rimraf ./**/node_modules && rm yarn.lock",
"clean:hard": "npx rimraf ./**/node_modules && npx rimraf ./**/lib && rm yarn.lock && npx rimraf ./**/.turbo && npx rimraf ./**/.nuxt",
"test": "yarn turbo:disable-telemetry && turbo run test",
"test:watch": "yarn turbo:disable-telemetry && turbo run test:watch",
"test:coverage": "yarn turbo:disable-telemetry && npx turbo run test:coverage",
"test:cypress-quarantine": "concurrently -k -s=first \"yarn wait-on http-get://localhost:3000 && yarn turbo:disable-telemetry && turbo run test:cypress-quarantine\" \"yarn start\"",
"test:cypress": "concurrently -k -s=first \"yarn wait-on http-get://localhost:3000 && yarn turbo:disable-telemetry && turbo run test:cypress\" \"yarn start\"",
"test:cypress-dev": "concurrently -k -s=first \"yarn wait-on http-get://localhost:3000 && yarn turbo:disable-telemetry && turbo run test:cypress-dev\" \"yarn dev\"",
"lhci:mobile": "lhci autorun"
},
"dependencies": {
"@plentymarkets/shop-api": "^0.41.0",
"@vee-validate/nuxt": "^4.12.8",
"@vee-validate/yup": "^4.12.8",
"country-flag-icons": "^1.5.11",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@lhci/cli": "^0.13.0",
"@nuxtjs/turnstile": "^0.8.0",
"@paypal/paypal-js": "7.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/uuid": "^9.0.8",
"@vite-pwa/nuxt": "^0.7.0",
"@vue-storefront/eslint-config": "~2.0.0",
"babel-preset-node": "^5.1.1",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"cypress-iframe": "^1.0.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"nuxt": "^3.11.2",
"nuxt-viewport": "^2.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"rollup": "^3.29.4",
"turbo": "1.13.3",
"typescript": "5.4.5",
"wait-on": "^7.2.0"
},
"engines": {
"yarn": ">=3.6.1",
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true
}
}
}