-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
39 lines (39 loc) · 1007 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
38
39
{
"name": "stytch-nextjs-integration",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"prettier": "prettier --write pages/ lib/ components/"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"dependencies": {
"@github/webauthn-json": "^2.0.1",
"@stytch/nextjs": "^21.0.0",
"@stytch/vanilla-js": "^5.2.0",
"cookies": "^0.8.0",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stytch": "^11.4.1"
},
"devDependencies": {
"@types/cookies": "^0.7.7",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"pre-commit": "^1.2.2",
"prettier": "2.7.1",
"typescript": "^4.8.4"
}
}