This repository has been archived by the owner on Jan 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"main": "src/index.ts",
"author": "kobakakzu0429 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --color --progress --config ./config/webpack.config.prod.js",
"dev": "webpack-dev-server --config ./config/webpack.config.dev.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"./{src,test}/**/*.{js,ts,tsx}\" --fix",
"lint:prettier": "prettier \"./{src,test}/**/*.{js,ts,tsx}\" --write"
},
"dependencies": {
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@kobakazu0429/eslint-config-typescript-react": "2.1.4",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"@types/react-router-dom": "5.3.2",
"@types/styled-components": "5.1.17",
"css-loader": "6.2.0",
"eslint": "7.32.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.24.2",
"file-loader": "6.2.0",
"fork-ts-checker-webpack-plugin": "6.3.6",
"html-webpack-plugin": "5.3.2",
"style-loader": "3.2.1",
"ts-loader": "9.2.6",
"typescript": "4.3.5",
"url-loader": "4.1.1",
"webpack": "5.51.2",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.0.0",
"webpack-manifest-plugin": "4.0.2",
"webpack-merge": "5.8.0"
}
}