-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
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
70
71
72
73
74
{
"name": "react-app-starter",
"version": "0.6.3",
"description": "Boilerplate project to get started with react",
"main": "index.js",
"scripts": {
"build:dev": "rimraf build && webpack --config webpack.config.dev.js",
"build": "rimraf build && npm run types:check && npm run build:prod",
"build:prod": "webpack --config webpack.config.prod.js",
"start": "webpack-dev-server --config webpack.config.dev.js",
"types:check": "tsc",
"eslint:fix": "eslint src --ext .tsx --fix",
"prettier:fix": "prettier --write ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suiz0/react-app-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/suiz0/react-app-starter/issues"
},
"homepage": "https://github.com/suiz0/react-app-starter#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"style-loader": "^3.3.1",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "defaults"
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
]
}
}