-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 988 Bytes
/
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
{
"name": "nextjs-geistui-swr-example",
"version": "0.1.0",
"private": true,
"main": "server.js",
"scripts": {
"dev": "run-p dev:*",
"dev:inmemory-db": "next dev",
"dev:json-server": "json-server json-server.js --routes json-server-routes.json --port 3001",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@geist-ui/react": "^2.1.0-canary.2",
"@geist-ui/react-icons": "^1.0.1",
"axios": "^0.21.0",
"date-fns": "^2.16.1",
"next": "10.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"sass": "^1.29.0",
"swr": "^0.3.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/date-fns": "^2.6.0",
"@types/node": "^14.14.7",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"json-server": "^0.16.2",
"npm-check-updates": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"react-context-devtool": "^2.0.0",
"typescript": "^4.0.5"
}
}