This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
{
"name": "react-template",
"version": "0.0.0",
"description": "Project template for React",
"author": "Shuntaro Nishizawa <[email protected]> (https://github.com/shun-shobon)",
"repository": {
"type": "git",
"url": "git+https://github.com/shun-shobon/react-template.git"
},
"bugs": {
"url": "https://github.com/shun-shobon/react-template/issues"
},
"homepage": "https://github.com/shun-shobon/react-template#readme",
"keywords": [
"react",
"template"
],
"scripts": {
"build": "webpack build --config webpack.prod.babel.js",
"dev": "webpack serve --config webpack.dev.babel.js",
"check": "run-p check:*",
"check:type": "tsc",
"check:code": "eslint --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"check:style": "stylelint --ignore-path .gitignore \"**/*.{css,scss}\"",
"check:format": "prettier --check --ignore-path .gitignore \"**/*.{js,ts,tsx,css,scss}\"",
"fix": "run-p fix:*",
"fix:code": "eslint --fix --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"fix:style": "stylelint --fix --ignore-path .gitignore \"**/*.{css,scss}\"",
"fix:format": "prettier --write --ignore-path .gitignore \"**/*.{js,ts,tsx,css,scss}\"",
"prepare": "husky install"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@wemake-services/stylelint-config-scss": "^0.5.0",
"autoprefixer": "^10.3.7",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.19.0",
"css-loader": "^6.5.0",
"cssnano": "^5.0.8",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fibers": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mini-css-extract-plugin": "^2.4.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.2.0",
"stylelint": "^14.0.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-recommended": "^6.0.0",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
}
}