-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.98 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
{
"name": "react-redux-serverless-typescript-example",
"version": "1.0.0",
"description": "This is an example template for React/Redux Typescript projects.\n\nThis is not a barebones template: it's ready to be deployed to Vercel with serverless functionality, and it includes some basic use examples for SCSS, Material-UI, RxJS, and React Router.",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/lab": "4.0.0-alpha.56",
"@reduxjs/toolkit": "1.4.0",
"axios": "0.21.0",
"express": "4.17.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"rxjs": "6.6.3"
},
"devDependencies": {
"@testing-library/react": "9.4.1",
"@types/chai": "4.2.9",
"@types/sinon": "7.5.1",
"@types/sinon-chai": "3.2.3",
"@types/material-ui": "0.21.8",
"@types/node": "14.14.6",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"@types/react-redux": "7.1.11",
"@types/react-router-dom": "5.1.6",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"eslint": "7.13.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"prettier": "2.1.2",
"typescript": "4.0.5",
"react-scripts": "4.0.0",
"node-sass": "4.0.0",
"sass-loader": "10.1.1",
"chai": "4.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"sinon": "9.0.0",
"sinon-chai": "3.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix"
},
"browserslist": [">0.2%", "not dead", "not ie <= 11", "not op_mini all"],
"license": "MIT"
}