This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
forked from craftcms/spoke-and-chain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
147 lines (147 loc) · 3.67 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "spoke-and-chain",
"version": "1.0.0",
"description": "Craft Commerce demo site.",
"scripts": {
"serve": "NODE_ENV=development webpack-dashboard -- webpack-dev-server --config webpack.dev.js",
"build": "NODE_ENV=production webpack --config webpack.prod.js --progress --hide-modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixelandtonic/spoke-and-chain.git"
},
"author": {
"name": "Pixel & Tonic"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/pixelandtonic/spoke-and-chain/issues"
},
"homepage": "https://github.com/pixelandtonic/spoke-and-chain#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"autoprefixer": "^10.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"create-symlink-webpack-plugin": "^1.0.1",
"css-loader": "^4.3.0",
"cssnano": "^4.1.10",
"cypress": "^10.8.0",
"cypress-audit": "^1.1.0",
"dotenv": "^8.2.0",
"file-loader": "^6.1.0",
"glob-all": "^3.2.1",
"html-webpack-plugin": "^4.5.0",
"ignore-loader": "^0.1.2",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^8.0.0",
"imagemin-webp": "^6.0.0",
"imagemin-webp-webpack-plugin": "^3.3.3",
"img-loader": "^3.0.2",
"mini-css-extract-plugin": "^0.11.2",
"moment": "^2.29.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.2.4",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.2",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"purgecss-webpack-plugin": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"sane": "^4.1.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.1",
"stylelint-config-recommended": "^3.0.0",
"symlink-webpack-plugin": "^1.0.0",
"terser-webpack-plugin": "^4.2.2",
"webapp-webpack-plugin": "^2.7.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dashboard": "^3.2.1",
"webpack-dev-server": "^3.11.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-merge": "^5.1.4",
"webpack-notifier": "^1.8.0"
},
"browserslist": [
"> 0.3% and last 2 versions",
"ie 11",
"not op_mini all",
"not dead"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": {
"version": 3
},
"targets": {
"browsers": [
"> 0.3% and last 2 versions",
"ie 11",
"not op_mini all",
"not dead"
]
}
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import"
]
},
"postcss": {
"plugins": [
[
"postcss-import",
{
"plugins": []
}
],
"postcss-normalize",
"tailwindcss",
[
"postcss-preset-env",
{
"features": {
"nesting-rules": true
}
}
]
]
},
"jshintConfig": {
"esversion": 6
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"modules": true
}
}
},
"dependencies": {
"alpinejs": "^2.8.2",
"sanitize.css": "^12.0.1",
"swiper": "^6.8.4",
"tailwindcss": "^2.2.19"
}
}