-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 840 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
{
"name": "news-box-frontend",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "yarn prettier --write ./src --config ./.prettierrc ",
"test": "cypress open",
"analyze": "source-map-explorer '.next/static/chunks/*.js'"
},
"dependencies": {
"autoprefixer": "^10.4.2",
"next": "12.0.10",
"next-pwa": "^5.4.4",
"postcss": "^8.4.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwind": "^4.0.0"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/node": "17.0.18",
"@types/react": "17.0.39",
"cypress": "^9.4.1",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"next-sitemap": "^2.1.14",
"source-map-explorer": "^2.5.2",
"typescript": "4.5.5"
}
}