-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
97 lines (97 loc) · 3.45 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": "app_adyen_SFRA",
"version": "24.4.1",
"description": "Adyen's official cartridge for SFRA",
"main": "index.js",
"paths": {
"base": "../storefront-reference-architecture/cartridges/app_storefront_base/",
"int_adyen_SFRA": "./cartridges/int_adyen_SFRA"
},
"scripts": {
"unitTest": "sgmf-scripts --test cartridges/int_adyen_SFRA/test/unit/**/*.js",
"lint": "eslint --ext js src",
"lint:fix": "eslint --ext js --fix src",
"format": "prettier-eslint $PWD/src/**/*.js",
"upload": "sgmf-scripts --upload -- ",
"uploadCartridge": "sgmf-scripts --uploadCartridge int_adyen_SFRA && sgmf-scripts --uploadCartridge app_adyen_SFRA && sgmf-scripts --uploadCartridge bm_adyen",
"watch": "sgmf-scripts --watch",
"compile:js": "sgmf-scripts --compile js",
"transpile": "babel ./src/cartridges -d ./cartridges --copy-files --no-copy-ignored --extensions .js,.test.js,.snap",
"build": "npm run transpile && npm run compile:js && npm run uploadCartridge",
"test": "jest ./src",
"test:watch": "jest ./src --watch",
"test:coverage": "jest ./src --coverage",
"test:coverageHTML": "jest ./src --coverage --coverageDirectory='coverage'",
"check-build:sfra": "chmod 755 ./check-build.sh && sh ./check-build.sh SFRA",
"check-branch-name": "chmod 755 ./branching.sh && sh ./branching.sh",
"prepare": "husky install",
"preinstall": "npx npm-force-resolutions",
"init:isml": "./node_modules/.bin/isml-linter --init",
"lint:isml": "./node_modules/.bin/isml-linter",
"build:isml": "./node_modules/.bin/isml-linter --build",
"fix:isml": "./node_modules/.bin/isml-linter --autofix"
},
"engines": {
"node": ">=14.0"
},
"dependencies": {
"mobx": "^6.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.15.4",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.8.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.0.0",
"babel-loader": "^9.0.0",
"chai": "^4.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-formatter-summary": "^1.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"isml-linter": "^5.43.9",
"istanbul": "^0.4.4",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.3.1",
"jquery": "^3.6.3",
"mocha": "^10.1.0",
"npm-force-resolutions": "0.0.10",
"postcss-loader": "^7.0.0",
"prettier": "^3.3.2",
"proxyquire": "2.1.3",
"regenerator-runtime": "^0.13.5",
"resolve-url-loader": "^5.0.0",
"sgmf-scripts": "^3.0.0",
"sinon": "^15.0.0",
"style-loader": "^3.0.0",
"stylelint": "^15.0.0",
"stylelint-scss": "^4.0.0",
"webpack": "^5.76.1"
},
"resolutions": {
"minimist": "1.2.8",
"node-notifier": "10.0.1",
"minimatch": "7.4.6",
"glob-parent": "6.0.2",
"yargs-parser": "21.1.1",
"braces": "3.0.3",
"jszip": "3.8.0",
"merge": "2.1.1",
"got": "12.6.1",
"@babel/traverse": "7.23.2",
"get-func-name": "3.0.0",
"tough-cookie": "4.1.3"
}
}