-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
40
41
42
43
44
{
"name": "webpack-basic-bundle-for-react",
"version": "1.0.0",
"description": "Basic bundle for react using emotion",
"main": "index.js",
"scripts": {
"start": "run-p -l type-check:watch start:dev",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"start:dev": "webpack-dev-server --mode development --open",
"build": "rimraf dist && webpack --mode development"
},
"author": "Miguel Ángel Vázquez Vera",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"babel-loader": "^8.1.0",
"babel-plugin-emotion": "^10.0.33",
"file-loader": "^6.0.0",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"npm-run-all": "^4.1.5",
"react-router-dom": "^5.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"emotion": "^10.0.27",
"eslint-plugin-react-hooks": "^4.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}