-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.89 KB
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
{
"name": "bigcommerce-cornerstone",
"description": "The BigCommerce reference theme for the Stencil platform",
"version": "6.10.0",
"private": true,
"author": "BigCommerce",
"license": "MIT",
"dependencies": {
"@bigcommerce/stencil-utils": "6.15.0",
"@trelliscommerce/prettier-config": "^1.0.0",
"core-js": "^3.30.2",
"creditcards": "^4.2.0",
"easyzoom": "^2.6.0",
"focus-trap": "^7.4.3",
"focus-within-polyfill": "^5.2.1",
"formdata-polyfill": "^4.0.10",
"foundation-sites": "^5.5.3",
"jquery": "^3.7.0",
"jstree": "^3.3.15",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"nod-validate": "^2.0.12",
"object-fit-images": "^3.2.4",
"regenerator-runtime": "^0.13.7",
"slick-carousel": "^1.8.1",
"svg-injector": "^1.1.3",
"webfontloader": "^1.6.28",
"whatwg-fetch": "^3.6.1"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.2",
"@bigcommerce/citadel": "^2.15.1",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^4.0.0",
"cli": "^1.0.1",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.6.0",
"expose-loader": "^4.1.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-eslint": "^24.1.0",
"grunt-run": "^0.8.1",
"grunt-stylelint": "^0.18.0",
"grunt-svgstore": "^2.0.0",
"husky": "^8.0.0",
"imports-loader": "^4.0.1",
"jest": "^29.5.0",
"lighthouse": "^10.2.0",
"lint-staged": "^13.2.2",
"load-grunt-config": "^4.0.1",
"lodash-webpack-plugin": "^0.11.6",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"stylelint": "^15.6.2",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-scss": "^5.0.0",
"tailwindcss": "^3.3.2",
"time-grunt": "^2.0.0",
"url": "^0.11.0",
"webpack": "^5.84.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.9.0"
},
"scripts": {
"build": "npx webpack --config webpack.prod.js",
"buildDev": "npx webpack --config webpack.dev.js",
"lighthouse": "npx lighthouse --config-path=lighthouse-config.js --quiet --output json --chrome-flags=\"--headless\" $URL | jq '.audits | map_values(.rawValue)'",
"tailwind": "npx tailwindcss -i ./assets/scss/tailwind-src.css -o ./assets/scss/tailwind.scss --watch",
"test": "npx jest",
"stylelint": "npx stylelint **/*.scss",
"stylelint:fix": "npx stylelint --fix **/*.scss",
"prepare": "husky install"
},
"prettier": "@trelliscommerce/prettier-config",
"lint-staged": {
"*.{js,md,scss,css}": "prettier --write"
}
}