-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "themed-styled-components-poc",
"version": "0.8.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-dev-server",
"build": "webpack",
"test": "test"
},
"author": "Aurelio G",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"bootstrap-sass": "^3.3.7",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"parallel-webpack": "^2.3.0",
"sass-loader": "^7.1.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}