-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "vim.how",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3011",
"preview": "next build && next start -p 4011",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"analyze": "cross-env ANALYZE=true next build"
},
"dependencies": {
"@vercel/analytics": "^1.1.3",
"next": "^11.0.1",
"next-pwa": "^5.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.0.1",
"@types/node": "^16.4.12",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"autoprefixer": "^10.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-next": "^11.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.1.2",
"postcss": "^8.2.4",
"prettier": "^2.1.2",
"typescript": "^4.1.3"
}
}