-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.89 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
{
"name": "Afterpay",
"version": "24.1.3",
"description": "Afterpay's official cartridge for SFRA and controllers-based SiteGenesis ",
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"license": "Apache-2.0",
"scripts": {
"test": "sgmf-scripts --test test/unit/**/*.js",
"test:integration": "sgmf-scripts --integration 'test/integration/**/*.js'",
"compile:scss": "sgmf-scripts --compile css",
"compile:js": "sgmf-scripts --compile js",
"build": "npm run compile:js && npm run compile:scss",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "sgmf-scripts --lint css",
"lint:js": "sgmf-scripts --lint js",
"upload": "sgmf-scripts --upload --",
"fix-js": "eslint-auto-fix --fix-on-startup",
"uploadCartridge": "sgmf-scripts --uploadCartridge bm_afterpay && sgmf-scripts --uploadCartridge int_afterpay_core && sgmf-scripts --uploadCartridge int_afterpay_sfra",
"watch": "sgmf-scripts --watch"
},
"author": "Afterpay",
"repository": {
"type": "git",
"url": "git+https://github.com/afterpay/afterpay-salesforce-commerce-cloud.git"
},
"homepage": "https://github.com/afterpay/afterpay-salesforce-commerce-cloud",
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"chai-subset": "^1.6.0",
"css-loader": "^1.0.1",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-sitegenesis": "~1.0.0",
"globalize": "^1.4.2",
"husky": "^4.2.5",
"isml-linter": "^5.26.4",
"istanbul": "^0.4.5",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"moment-timezone": "^0.5.26",
"postcss-loader": "^3.0.0",
"properties-parser": "^0.3.1",
"proxyquire": "1.7.4",
"request-promise": "^4.2.4",
"sass": "^1.51.0",
"sass-loader": "^7.3.1",
"selenium-standalone": "^6.16.0",
"sgmf-scripts": "^2.4.2",
"shelljs": "^0.8.5",
"sinon": "^1.17.7",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-scss": "^2.5.0",
"url": "^0.11.0",
"wdio-sauce-service": "^0.4.14",
"webdriverio": "^5.14.5",
"xml2js": "^0.5.0"
},
"dependencies": {
"bootstrap": "^4.6.1",
"cleave.js": "^1.5.3",
"flag-icon-css": "^2.9.0",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1",
"parse-price": "^1.1.8"
},
"browserslist": [
"last 2 versions",
"ie >= 10"
],
"packageName": "int_afterpay_sfra",
"paths": {
"base": "../storefront-reference-architecture-master/cartridges/app_storefront_base/"
},
"babel": {
"presets": [
"env"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}