-
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.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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": "react-ejected",
"version": "0.1.0",
"author": {
"name": "Nik Rowell",
"email": "nik@nikrowell.com",
"url": "http://www.nikrowell.com/"
},
"scripts": {
"start": "npm run clean && webpack-dev-server --mode development",
"build": "npm run clean && webpack --mode production",
"clean": "rm -rf build/*",
"test": "echo 'tsk tsk... you should be unit testing'"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"error-overlay-webpack-plugin": "^0.4.1",
"file-loader": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"sass": "^1.26.11",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.8",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}