-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "tree-maps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"format": "prettier --write \"{components,constants,hooks,model,pages,store,types}/**/*.{ts,tsx}\"",
"lint": "eslint \"{components,constants,hooks,model,pages,store,types}/**/*.{ts,tsx}\" --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.10",
"compression": "^1.7.4",
"express": "^4.17.1",
"immer": "^8.0.1",
"next": "^9.3.5",
"next-redux-wrapper": "^6.0.0-rc.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"@types/next-redux-wrapper": "^3.0.0",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-jss": "^10.0.0",
"@types/react-redux": "^7.1.7",
"@types/redux": "^3.6.0",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"dotenv-webpack": "^1.7.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.5",
"redux-devtools-extension": "^2.13.8",
"typescript": "^3.8.3"
}
}