generated from ooade/NextSimpleStarter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "next-simple-starter",
"private": true,
"version": "0.0.15",
"repository": {
"url": "https://github.com/ooade/NextSimpleStarter"
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"dev": "next",
"start": "next start",
"lint": "eslint components",
"build": "next build",
"build:server": "NEXT_TARGET=server next build",
"export:server": "NEXT_TARGET=server next export",
"export": "npm run build:server && npm run export:server",
"start:static": "serve",
"now-build": "next build"
},
"dependencies": {
"@emotion/cache": "^11.9.3",
"@emotion/react": "^11.9.3",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.11.4",
"@material/data-table": "^14.0.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "*",
"@mui/material": "^5.9.0",
"@mui/x-data-grid": "^5.13.0",
"@next/env": "^12.2.3",
"axios": "^0.27.2",
"googleapis": "^105.0.0",
"next": "^12.2.1",
"next-offline": "^5.0.5",
"react": "^17.0.2",
"react-axe": "^3.5.4",
"react-dom": "^17.0.2",
"react-github-btn": "^1.3.0",
"release-it": "^15.2.0",
"require-main-filename": "^2.0.0",
"thum.io": "^1.0.9"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/react": "^17.0.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.23.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.7.4"
},
"browser": {
"child_process": false
}
}