-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "stylescape-example-webpack",
"description": "Stylescape example using Webpack bundler",
"version": "0.0.2",
"private": true,
"repository": "https://github.com/stylescape/example-webpack",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"dev": "webpack serve --mode development",
"start": "webpack serve",
"build": "webpack build --mode=production",
"test": "npm run build",
"lint:css": "stylelint \"src/**/*.{css,scss}\"",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx,css,scss,html,json}\""
},
"dependencies": {
"stylescape": "^0.3.15"
},
"devDependencies": {
"autoprefixer": "^10.4.27",
"css-loader": "^7.1.4",
"html-webpack-plugin": "^5.6.6",
"postcss-loader": "^8.2.1",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"stylelint": "^17.4.0",
"stylelint-config-standard-scss": "^17.0.0",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}