-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 4.63 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "sfra",
"version": "7.0.0",
"description": "Storefront Reference Architecture",
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "sgmf-scripts --test test/unit/**/*.js",
"cover": "sgmf-scripts --cover 'test/unit'",
"test:integration": "sgmf-scripts --integration 'test/integration/**/*.js'",
"test:acceptance:custom": "npx codeceptjs run --plugins retryFailedStep --profile",
"test:acceptance:deep": "npx codeceptjs run --plugins retryFailedStep --grep '(?=.*)^(?!.*@mobile)^(?!.*@tablet)^(?!.*@pageDesigner)' --profile",
"test:acceptance:smoke": "npx codeceptjs run --plugins retryFailedStep --grep @happyPath --profile",
"test:acceptance:pagedesigner": "npx codeceptjs run --plugins retryFailedStep --grep @pageDesigner --profile",
"test:acceptance:desktop": "npx codeceptjs run --plugins retryFailedStep --grep '(?=.*)^(?!.*@mobile)^(?!.*@tablet)^(?!.*@pageDesigner)^(?!.*@deepTest)' --profile",
"test:acceptance:mobile": "windowSize=390x844 npx codeceptjs run --plugins retryFailedStep --grep @mobile --profile",
"test:acceptance:tablet": "windowSize=820x1180 npx codeceptjs run --plugins retryFailedStep --grep @tablet --profile",
"compile:scss": "sgmf-scripts --compile css",
"compile:js": "sgmf-scripts --compile js",
"compile:fonts": "node bin/Makefile compileFonts",
"build": "npm run compile:js && npm run compile:fonts && npm run compile:scss",
"lint": "npm run lint:css && npm run lint:js && npm run lint:isml",
"lint:css": "sgmf-scripts --lint css",
"lint:js": "sgmf-scripts --lint js",
"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",
"upload": "sgmf-scripts --upload",
"uploadCartridge": "sgmf-scripts --uploadCartridge app_storefront_base && sgmf-scripts --uploadCartridge modules && sgmf-scripts --uploadCartridge bm_app_storefront_base",
"watch": "sgmf-scripts --watch",
"watch:static": "sgmf-scripts --watch static",
"release": "node bin/Makefile release --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesforceCommerceCloud/storefront-reference-architecture.git"
},
"author": "Ilya Volodin <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/SalesforceCommerceCloud/storefront-reference-architecture",
"devDependencies": {
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@tridnguyen/config": "^2.3.1",
"@wdio/selenium-standalone-service": "^7.31.1",
"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",
"chalk": "^1.1.3",
"cheerio": "0.22.0",
"cldr-data": "^36.0.1",
"codeceptjs": "^3.5.11",
"css-loader": "^6.0.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"debug": "^4.1.1",
"deepmerge": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-sitegenesis": "~1.0.0",
"globalize": "^1.4.2",
"husky": "^4.2.5",
"isml-linter": "^5.26.4",
"lodash": "^4.17.15",
"mini-css-extract-plugin": "^2.7.6",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"moment-timezone": "^0.5.26",
"nyc": "^15.1.0",
"postcss-loader": "^7.0.0",
"prettier": "3.0.0",
"properties-parser": "^0.3.1",
"proxyquire": "1.7.4",
"request-promise": "^4.2.6",
"sass": "^1.69.7",
"sass-loader": "^13.3.2",
"selenium-standalone": "^9.3.1",
"sgmf-scripts": "^3.0.0",
"shelljs": "^0.8.5",
"should": "^13.2.3",
"sinon": "^17.0.1",
"style-loader": "^0.21.0",
"stylelint": "^15.4.0",
"stylelint-config-standard-scss": "^11.0.0",
"url": "^0.11.0",
"webdriverio": "^7.30.0",
"webpack-remove-empty-scripts": "^1.0.4",
"xml2js": "^0.4.22"
},
"dependencies": {
"autoprefixer": "^10.4.14",
"bootstrap": "^4.6.2",
"cleave.js": "^1.5.3",
"flag-icons": "7.1.0",
"font-awesome": "^4.7.0",
"jquery": "^3.5.1"
},
"browserslist": [
"last 2 versions",
"ie >= 10"
],
"packageName": "app_storefront_base",
"babel": {
"presets": [
"env"
]
},
"paths": {
"base":"../storefront-reference-architecture/cartridges/app_storefront_base/"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}