-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "webauthn-example",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"storybook": "start-storybook -s ./public",
"storybook:build": "build-storybook -o ./out/storybook",
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prepare": "next telemetry disable"
},
"dependencies": {
"faunadb": "^3.0.1",
"next": "12.1.0",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-console": "^1.2.2",
"@storybook/addons": "^6.0.28",
"@storybook/react": "^6.1.0-beta.5",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"tailwindcss": "^1.9.6",
"typescript": "^4.0.5"
}
}