-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.37 KB
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
{
"name": "nextjs-static-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next",
"build": "next build && next export",
"start": "next start",
"lint": "eslint \"{utils,pages,state,components,api,styles,models}/**/*.{ts,tsx,css,js,jsx,md}\" \"*.md\"",
"format": "prettier --write \"{utils,pages,state,components,api,styles,models}/**/*.{ts,tsx,css,js,jsx,md}\" \"*.md\"",
"checkFormat": "prettier --check \"{utils,pages,state,components,api,styles,models}/**/*.{ts,tsx,css,js,jsx,md}\" \"*.md\""
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@types/react-query": "^1.1.2",
"clsx": "^1.1.1",
"cross-env": "^7.0.2",
"isomorphic-unfetch": "^3.0.0",
"next": "9.4.4",
"notistack": "^0.9.17",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-query": "^2.5.4",
"recoil": "^0.0.10"
},
"devDependencies": {
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.3",
"prettier": "^2.0.5",
"react-query-devtools": "^2.3.3",
"serve": "^11.3.0",
"typescript": "^3.9.6"
}
}