-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 927 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
40
41
{
"name": "playwright-next-mongodb-example",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"types": "tsc --noEmit --pretty",
"test": "playwright test"
},
"dependencies": {
"immer": "^9.0.16",
"mongoose": "^6.6.7",
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@types/node": "^18.11.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "<9.0.0",
"eslint-config-next": "^12.3.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": "next/core-web-vitals"
},
"prettier": {
"printWidth": 95,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"bracketSameLine": true
},
"license": "MIT"
}