-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "spectrum-demo",
"version": "1.0.0",
"description": "A homework assignment for Spectrum/Charter Communications",
"main": "index.js",
"dependencies": {
"@babel/runtime": "^7.10.5",
"@hot-loader/react-dom": "^16.13.0",
"autoprefixer": "^9.8.5",
"babel-plugin-react-css-modules": "^5.2.6",
"directory-named-webpack-plugin": "^4.0.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/runtime-corejs2": "^7.10.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^4.0.0",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.32",
"postcss-extend": "^1.0.5",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-mixins": "^6.2.3",
"postcss-modules": "^3.2.0",
"postcss-nested": "^4.2.3",
"postcss-preset-env": "^6.7.0",
"postcss-simple-vars": "^5.0.2",
"postcss-url": "^8.0.0",
"style-loader": "^1.2.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
},
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --NODE_ENV development --DEBUG true",
"build": "webpack --config ./webpack.config.js --progress --NODE_ENV production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcrigler/spectrum-demo.git"
},
"author": "Brian Crigler",
"license": "ISC",
"bugs": {
"url": "https://github.com/bcrigler/spectrum-demo/issues"
},
"homepage": "https://github.com/bcrigler/spectrum-demo#readme"
}