forked from vuestorefront/shopware-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.64 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "shopware-pwa",
"version": "1.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/**/**"
]
},
"scripts": {
"start": "yarn && yarn build --ci && node scripts/init.js",
"dev": "node scripts/dev.js",
"dev:client": "yarn dev shopware-6-client",
"dev:composables": "yarn dev composables",
"dev:helpers": "yarn dev helpers",
"dev:nuxt-module": "yarn dev nuxt-module",
"dev:debug": "node --inspect scripts/dev.js",
"build": "node scripts/build.js",
"postinstall": "node scripts/linkDependencies.js && lerna link && husky install",
"lint": "prettier --write --parser typescript \"packages/**/*.ts\"",
"test": "NODE_OPTIONS=--unhandled-rejections=warn jest --runInBand",
"test:e2e": "jest --e2e=true --runInBand",
"test:cypress": "cypress run",
"test:coverage": "yarn test --coverage",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --parser=typescript --write",
"git add"
]
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@microsoft/api-documenter": "^7.13.65",
"@microsoft/api-extractor": "^7.18.17",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^14.14.37",
"@rollup/plugin-replace": "^3.0.0",
"@types/faker": "^5.5.9",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"axios": "^0.24.0",
"brotli": "^1.3.2",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.1",
"cypress": "^8.7.0",
"enquirer": "^2.3.6",
"esbuild": "^0.13.12",
"execa": "^5.1.1",
"faker": "^5.5.3",
"fs-extra": "^10.0.0",
"fs-jetpack": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"minimist": "^1.2.5",
"prettier": "~2.4.1",
"rollup": "^2.59.0",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semver": "^7.3.5",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typedoc": "^0.22.7",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.4",
"vuepress": "^1.8.2",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=10.x"
}
}