-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 907 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 907 Bytes
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
{
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"dependencies": {
"msw": "^1.2.1",
"next": "^15.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^16.18.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.19",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
]
},
"name": "virtual-guestbook",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start -p 3000"
},
"version": "0.1.0"
}