This repository has been archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
36
37
38
39
40
41
42
{
"name": "polythene-react-setup",
"description": "Polythene for React setup example",
"version": "1.6.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArthurClemens/polythene-react-setup.git"
},
"scripts": {
"dev": "npm-run-all --parallel dev:watch dev:serve",
"dev:serve": "webpack-dev-server --config scripts/webpack.config.dev.js --disableHostCheck true --port 3000",
"dev:watch": "webpack --watch --config scripts/webpack.config.dev.js",
"build": "webpack --config scripts/webpack.config.prod.js && cp ./public/index.html ./dist/index.html",
"serve": "http-server -p 5000 dist"
},
"dependencies": {
"polythene-css": "^1.7.4",
"polythene-react": "^1.7.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^6.0.3",
"css-loader": "^4.3.0",
"mini-css-extract-plugin": "1.0.0",
"npm-run-all": "^4.1.5",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-modules": "^1.0.0",
"webpack": "^4.44.2"
}
}