-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "nextjs-hello",
"description": "Next.js SDK for signing in with Hellō",
"version": "0.1.11",
"repository": "git@github.com:irrelevelephant/nextjs-hello.git",
"author": "Thomas Smith <tsmithtree@gmail.com>",
"license": "MIT",
"scripts": {
"build": "npm run build:clean && npm run build:src",
"build:clean": "rimraf dist/",
"build:src": "tsc"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"cors": "^2.8.5",
"iron-session": "^6.1.3",
"swr": "^1.3.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"next": ">=10",
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/cors": "^2.8.12",
"@types/react": "^18.0.12",
"@types/uuid": "^8.3.4",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=12"
}
}