-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1011 Bytes
/
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
{
"name": "first-react-app",
"version": "1.0.0",
"description": "$ npm init -y",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode=development --port=3000",
"build": "webpack --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"path": "^0.12.7",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"style-loader": "^1.1.3"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.1.0-9",
"bootstrap": "^4.4.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"popper.js": "^1.16.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}