-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (51 loc) · 1.19 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
{
"name": "redux-ts",
"version": "1.0.0",
"description": "React example starter project",
"keywords": [
"react",
"starter"
],
"main": "src/index.js",
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@types/react": "^17.0.22",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"postcss-cli": "^8.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-redux-typescript": "^3.0.0-rc.3",
"react-scripts": "^4.0.3",
"redux": "^4.1.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/runtime": "7.13.8",
"autoprefixer": "^10.3.4",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.15"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"build:css": "postcss src/styles/tailwind.css -o src/styles/main.css"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}