-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.91 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
{
"name": "X-Corner",
"description": "The X-Corner BigCommerce Theme",
"version": "1.0.0",
"private": true,
"author": "XFive.Co Pty Ltd",
"license": "MIT",
"sideEffects": false,
"dependencies": {
"@bigcommerce/stencil-cli": "^7.3.0",
"@bigcommerce/stencil-utils": "6.15.1",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.9.0",
"creditcards": "^4.2.0",
"css-loader": "^6.7.3",
"easyzoom": "^2.5.3",
"eventemitter3": "^5.0.0",
"focus-trap": "^7.5.4",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"nod-validate": "^2.0.12",
"regenerator-runtime": "^0.14.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"svg-injector": "^1.1.3",
"swiper": "8",
"webfontloader": "^1.6.28",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.5.0",
"whatwg-fetch": "^3.6.1"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/eslint-parser": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.17",
"@bigcommerce/citadel": "^2.15.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-lodash": "^3.3.4",
"cli": "^1.0.1",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-chisel": "^3.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "^7.22.0",
"expose-loader": "^4.0.0",
"grunt": "^1.5.3",
"grunt-cli": "^1.3.2",
"grunt-eslint": "^24.3.0",
"grunt-run": "^0.8.1",
"grunt-stylelint": "^0.19.0",
"grunt-svgstore": "^2.0.0",
"husky": "^8.0.3",
"imports-loader": "^4.0.1",
"jest": "^29.7.0",
"lighthouse": "^11.3.0",
"lint-staged": "^15.1.0",
"load-grunt-config": "^4.0.1",
"prettier": "3.1.0",
"stylelint": "^15.11.0",
"stylelint-config-chisel": "^1.0.0",
"stylelint-scss": "^5.3.1",
"time-grunt": "^2.0.0",
"url": "^0.11.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.8.0"
},
"scripts": {
"build": "npx webpack --config webpack.prod.js",
"buildDev": "npx webpack --config webpack.dev.js",
"createComponent": "node scripts/create-component.js",
"createUtility": "node scripts/create-utility.js",
"addTemplate": "node scripts/add-template.js",
"addCode": "node scripts/add-code.js",
"lighthouse": "npx lighthouse --config-path=lighthouse-config.js --quiet --output json --chrome-flags=\"--headless\" $URL | jq '.audits | map_values(.rawValue)'",
"test": "npx jest",
"stylelint": "npx stylelint **/*.scss",
"stylelint:fix": "npx stylelint --fix **/*.scss",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.css": "stylelint --fix",
"*.{js,css,md}": "prettier --write"
}
}