-
Notifications
You must be signed in to change notification settings - Fork 200
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "next-simple-starter",
"private": true,
"version": "3.0.0",
"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/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/core": "^4.11.2",
"@mui/material": "^5.14.9",
"@mui/styles": "^5.14.9",
"next": "^14.2.10",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-axe": "^3.5.4",
"react-dom": "^18.2.0"
},
"devDependencies": {
"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"
}
}