-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.07 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
{
"name": "fp-react-redux-typescript",
"version": "1.0.0",
"description": "",
"author": "Alessio Enrico Repetti <[email protected]>",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/repeale/fp-react-redux-typescript"
},
"engines": {
"node": ">=18"
},
"scripts": {
"start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --config config/webpack.development.ts --hot --progress --color --port 3000 --open",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --config config/webpack.production.ts --progress",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "8.0.1",
"redux": "4.2.0",
"redux-thunk": "2.4.1",
"tslib": "2.4.0"
},
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-env": "7.17.10",
"@babel/preset-react": "7.16.7",
"@repeale/eslint-config": "1.6.0",
"@repeale/prettier-config": "1.0.8",
"@types/node": "17.0.31",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.24",
"@types/webpack": "5.28.0",
"@types/webpack-env": "1.16.4",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"babel-loader": "8.2.5",
"clean-webpack-plugin": "4.0.0",
"core-js": "3.22.4",
"cross-env": "7.0.3",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"html-webpack-plugin": "5.5.0",
"prettier": "2.6.2",
"react-hot-loader": "4.13.0",
"redux-devtools-extension": "2.13.9",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.3.0",
"ts-node": "10.7.0",
"tsconfig-paths": "4.0.0",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.9.0",
"webpack-merge": "5.8.0"
}
}