forked from shopgate/pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.92 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
93
94
95
96
97
{
"name": "@shopgate/pwa",
"private": true,
"workspaces": [
"extensions/@shopgate-product-reviews/frontend",
"extensions/@shopgate-tracking-ga-native/frontend",
"extensions/@shopgate-user-privacy/frontend",
"extensions/@shopgate-theme-config/frontend",
"libraries/*",
"themes/*",
"utils/*"
],
"repository": {
"type": "git",
"url": "https://github.com/shopgate/pwa.git"
},
"changelog": {
"cacheDir": ".changelog",
"labels": {
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"feature": ":rocket: New Feature",
"breaking": ":boom: Breaking Change",
"polish": ":nail_care: Polish",
"internal": ":house: Internal",
"docs": ":memo: Documentation"
}
},
"scripts": {
"setup": "sgconnect init && lerna bootstrap",
"add-remotes": "node ./scripts/add-remotes.js",
"remove-remotes": "node ./scripts/remove-remotes.js",
"clean": "make clean",
"test": "jest",
"test:watch": "jest --watch",
"cover": "jest --coverage",
"lint": "eslint --quiet --ignore-pattern extensions --ext .js --ext .jsx --ext .json .",
"release": "make release",
"e2e:gmd": "make e2e-gmd",
"e2e:ios11": "make e2e-ios11",
"e2e:checkout": "make e2e-checkout",
"start-cloud": "sgconnect backend start & sgconnect frontend start",
"lint-staged": "lint-staged",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx,json}": [
"eslint"
]
}
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.5.5",
"@types/react": "^16.9.11",
"coveralls": "^3.0.1",
"detector": "^2.5.0",
"eslint": "~5.12.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"husky": "^1.0.0-rc.13",
"jest": "^24.9.0",
"lerna": "^2.9.0",
"lerna-changelog": "^0.8.2",
"lint-staged": "^7.2.2",
"patch-package": "^6.1.2",
"react": "~16.12.0",
"react-dom": "~16.12.0",
"uver": "^1.1.0",
"yargs": "^11.0.0"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"@babel/runtime-corejs3": "^7.5.5",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"compare-versions": "^3.4.0",
"react-hot-loader": "~4.12.18"
}
}