-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 822 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 822 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
{
"name": "minimal-emotion",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js --hot",
"clean-emotion-css": "find src | grep css | xargs -I % rm -v %",
"build-webpack": "webpack --config webpack.release.js",
"build": "yarn build-webpack && yarn clean-emotion-css",
"serve": "http-server dist/"
},
"devDependencies": {
"css-loader": "^3.4.2",
"emotion": "^10.0.27",
"html-webpack-plugin": "^4.0.4",
"http-server": "^0.12.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^5.104.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^5.2.1"
}
}