-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 915 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 915 Bytes
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
{
"name": "stylescape_webpack",
"description": "Include Stylescape's source Sass and individual JavaScript plugins with Webpack.",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/stylescape/example-webpack",
"license": "MIT",
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"start": "webpack serve",
"build": "webpack build --mode=production",
"test": "npm run build"
},
"dependencies": {
"stylescape": "^0.1.44"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"postcss-loader": "^8.1.1",
"sass": "^1.91.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}