-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.51 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
83
{
"name": "reacttypescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest -c \"./config/jest.config.js\"",
"start": "webpack serve --config=config/webpack.dev.js",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"clean-dist": "rimraf dist/*",
"build": "yarn run clean-dist && webpack --config=config/prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashrash/reactTypescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashrash/reactTypescript/issues"
},
"homepage": "https://github.com/ashrash/reactTypescript#readme",
"dependencies": {
"@types/enzyme-adapter-react-16": "^1.0.6",
"axios": "^0.27.2",
"class-validator": "^0.13.2",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^4.3.1",
"react-redux": "^7.1.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/axios": "^0.14.0",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"@types/ramda": "^0.28.13",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/redux-logger": "^3.0.9",
"@types/redux-saga": "^0.10.5",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"cheerio": "1.0.0-rc.3",
"class-transformer": "^0.5.1",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.16.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.2",
"sass": "^1.52.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.3",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge": "^5.8.0"
}
}