-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "stytch-b2b-node-example",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"format-fix": "prettier --write .",
"toggle-local-stytch": "(npm ls stytch | grep ./../stytch-node && npm uninstall stytch && npm install stytch) || (npm ls stytch | grep -q ./../stytch-node || npm install --save ../stytch-node)\n"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"engines": {
"node": ">=16.10.0",
"npm": ">=6.14.15"
},
"dependencies": {
"@next/font": "13.1.6",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.10",
"cookies": "^0.8.0",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"isomorphic-base64": "^1.0.2",
"isomorphic-unfetch": "^4.0.2",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"stytch": "^10.5.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"prettier": "^2.8.8"
}
}