This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "next-boilerplate",
"version": "1.0.1",
"description": "Next.js Boilerplate with Next.js, Typescript, Tailwind, Next-Auth, FaunaDB, Meilisearch, Google Analytics, Sentry, Cypress, SWR, Axios",
"scripts": {
"dev": "next",
"type-check": "tsc",
"test": "cypress open",
"build": "next build",
"profile": "next build --profile",
"start": "next start",
"export": "next build && next export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KNIF/next-boilerplate.git"
},
"keywords": [
"next",
"typescript",
"tailwind",
"next-auth",
"faunadb",
"meilisearch",
"google-analytics",
"sentry",
"cypress",
"swr",
"axios"
],
"author": "KNIF <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/KNIF/next-boilerplate/issues"
},
"homepage": "https://github.com/KNIF/next-boilerplate#readme",
"dependencies": {
"@sentry/browser": "latest",
"@sentry/integrations": "latest",
"@sentry/node": "latest",
"@sentry/webpack-plugin": "latest",
"axios": "latest",
"faunadb": "latest",
"meilisearch": "latest",
"mysql": "latest",
"next": "latest",
"next-auth": "latest",
"react": "latest",
"react-dom": "latest",
"swr": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"cypress": "latest",
"postcss-flexbugs-fixes": "latest",
"postcss-preset-env": "latest",
"tailwindcss": "latest",
"typescript": "latest"
}
}