-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.18 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-starter",
"version": "1.0.0",
"description": "React (TS) starter project",
"main": "index.js",
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"dev": "webpack-cli serve --env NODE_ENV=development --mode development",
"build": "webpack --env NODE_ENV=production --mode production",
"build:dev": "webpack --env NODE_ENV=development --mode development",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "run-s -csn lint:eslint lint:prettier lint:stylelint",
"fix": "run-s -csn fix:eslint fix:prettier fix:stylelint",
"lint:prettier": "prettier --check .",
"fix:prettier": "prettier --write .",
"lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx .",
"fix:eslint": "eslint --ext .ts,.tsx,.js,.jsx . --fix",
"lint:stylelint": "stylelint **/*.{css,scss} & stylelint **/*.{tsx,jsx} --config .stylelintrc.styled-components.js",
"fix:stylelint": "stylelint --fix **/*.{css,scss}",
"generate:api": "run-p generate:pets-api",
"generate:pets-api": "taxios-generate --skip-additional-properties --named-enums src/types/pets-api/api.json -o ./src/types/generated/PetsAPI.ts --skip-validation -e PetsAPI && prettier --write ./src/types/generated/PetsAPI.ts",
"prepare": "husky install"
},
"dependencies": {
"@moxy/next-layout": "^2.2.3",
"@simplesmiler/taxios": "^0.2.7",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"core-js": "^3.15.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"serve-handler": "^6.1.3",
"styled-components": "^5.3.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@simplesmiler/taxios-generate": "^0.2.7",
"@swc/core": "^1.2.66",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/node": "^16.11.19",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/styled-components": "^5.1.11",
"@types/url-join": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@web-bee-ru/commitlint-config": "^1.0.1",
"@web-bee-ru/eslint-plugin": "^0.6.0",
"@web-bee-ru/branch-name-lint": "^2.1.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.3.1",
"dotenv": "^10.0.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^34.0.1",
"fork-ts-checker-webpack-plugin": "^6.2.13",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.0",
"mini-css-extract-plugin": "^2.5.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.3.2",
"react-dev-utils": "^11.0.4",
"react-refresh": "^0.10.0",
"react-refresh-typescript": "^2.0.2",
"resolve-url-loader": "^4.0.0",
"sass": "^1.36.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-scss": "^3.20.1",
"swc-loader": "^0.1.14",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.4",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-bee-ru/react-starter.git"
},
"author": "criitch@yandex.ru",
"license": "ISC",
"bugs": {
"url": "https://github.com/web-bee-ru/react-starter/issues"
},
"homepage": "https://github.com/web-bee-ru/react-starter#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "node branchNameLint"
}
},
"browserslist": [
"last 1 chrome version"
]
}