-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "next-template",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"dev": "next",
"build:sb": "yarn run build-storybook",
"build:next": "NODE_ENV=production next build",
"build": "yarn run build:next",
"start": "next start",
"export": "next export",
"icon": "svgr icons -d components/icons --icon"
},
"dependencies": {
"@hookform/resolvers": "^1.0.0",
"axios": "^0.21.2",
"classnames": "^2.2.6",
"crypto-js": "^4.0.0",
"heroicons-react": "^1.3.0",
"next": "^12.1.0",
"next-compose-plugins": "^2.2.0",
"next-pwa": "^3.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-recaptcha": "^2.1.0",
"react-hook-form": "6.9.5",
"react-toastify": "^6.0.9",
"sass": "^1.27.0",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@svgr/cli": "^5.4.0",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.0",
"postcss-custom-media": "^7.0.8",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.3",
"prettier": "^2.0.5",
"sass-loader": "^10.0.4",
"style-loader": "^2.0.0"
}
}