This repository was archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.19 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
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "React boilerplate with TypeScript for new projects",
"main": "index.tsx",
"author": "Eduard Trayt <eduard2011rus@gmail.com> (https://github.com/EdMSL)",
"repository": {
"type": "git",
"url": "https://github.com/EdMSL/react-typescript-boilerplate.git"
},
"license": "MIT",
"keywords": [
"react",
"redux",
"typescript"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --mode development --config=./config/webpack.dev.config.js --progress",
"build": "rm -rf ./build/* && cross-env NODE_ENV=production webpack --env production --config=./config/webpack.build.config.js --progress",
"stylelint": "stylelint src/**/*.scss --config ./.stylelintrc-full.js --syntax scss --fix",
"eslint": "eslint --config ./.eslintrc.js src --ext .ts,.tsx,.js,.jsx --fix",
"tslint": "tsc --project tsconfig.json",
"lint": "npm run stylelint && npm run eslint && npm run tslint",
"test": "jest --config=./jest.config.js",
"init": "node ./scripts/init.js && git remote rm origin",
"finish": "npm shrinkwrap"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@types/jest": "29.4.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-loader": "9.1.2",
"classnames": "2.3.2",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.7.3",
"eslint": "8.34.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-webpack": "0.13.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "5.5.0",
"jest": "29.4.2",
"mini-css-extract-plugin": "2.7.2",
"postcss-loader": "7.0.2",
"react-refresh": "0.14.0",
"sass": "1.58.1",
"sass-loader": "13.2.0",
"sass-resources-loader": "2.2.5",
"style-loader": "3.3.1",
"stylelint": "15.1.0",
"stylelint-config-standard": "30.0.1",
"stylelint-order": "6.0.2",
"stylelint-scss": "4.4.0",
"svg-spritemap-webpack-plugin": "4.5.0",
"ts-jest": "^29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"axios": "^1.3.3",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2"
}
}