-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "themed-styled-components-poc",
"version": "1.0.0",
"description": "A brief example of how to build various CSS files with a different set of variables for different themes combining SCSS frameworks and tailored CSS code from components",
"main": "index.js",
"scripts": {
"dev": "webpack serve --mode development",
"build": "webpack",
"test": "test"
},
"author": "Aurelio G",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"bootstrap-sass": "^3.4.1",
"css-loader": "^5.2.7",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^1.6.2",
"parallel-webpack": "^2.6.0",
"sass": "^1.50.0",
"sass-loader": "^10.2.1",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"node": "<=14",
"npm": "<=7"
}
}