generated from staticwebdev/nextjs-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "ileftit",
"version": "0.1.0",
"private": true,
"dependencies": {
"@azure/data-tables": "^13.2.2",
"@azure/storage-blob": "^12.14.0",
"jwt-decode": "^3.1.2",
"next": "^13.2.4",
"next-auth": "^4.15.0",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.1",
"swr": "^2.1.1",
"ulid": "^2.3.0",
"web-push": "^3.6.5"
},
"scripts": {
"dev": "next dev",
"build": "next build && rm -rf ./.next/cache",
"start": "next start",
"lint": "next lint",
"build:testlib": "tsc src/client/*.ts --target es2021 --outDir test/build/client --skipLibCheck --module umd",
"playwright_test": "playwright test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.32.1",
"@types/react": "^18.0.32",
"dotenv": "^16.3.1",
"eslint": "^8.26.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7"
}
}