This repository has been archived by the owner on Mar 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.46 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
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
{
"name": "react-template",
"description": "Project template for React",
"repository": "https://github.com/shun-shobon/react-template.git",
"homepage": "https://github.com/shun-shobon/react-template#readme",
"bugs": "https://github.com/shun-shobon/react-template/issues",
"author": "Shuntaro Nishizawa <me@shun.technology> (https://github.com/shun-shobon)",
"license": "MIT",
"private": true,
"scripts": {
"build": "cross-env NODE_ENV=production webpack build",
"dev": "webpack serve",
"lint": "eslint --fix --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"lint:check": "eslint --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.{js,ts,jsx,tsx,css,sass,scss}\"",
"format:check": "prettier --check --ignore-path .gitignore \"**/*.{js,ts,jsx,tsx,css,sass,scss}\"",
"fix": "run-s lint format",
"check": "run-p *:check",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{js,ts,jsx,tsx,css,sass,scss}": "prettier --write"
},
"dependencies": {
"core-js": "^3.9.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/fibers": "^3.1.0",
"@types/html-webpack-plugin": "^3.2.4",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/node": "^14.14.34",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/sass": "^1.16.0",
"@types/webpack-dev-server": "^3.11.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.2",
"cssnano": "^4.1.10",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"fibers": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"postcss-loader": "^5.2.0",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}