-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"size-limit": [
{
"path": "./.next/static/chunks/**/*.js",
"limit": "200kb"
},
{
"path": "./.next/static/chunks/pages/*.js",
"limit": "1 s"
}
],
"scripts": {
"dev": "next dev",
"now-build": "next build",
"build": "next build",
"lint": "next lint",
"start": "next start",
"export": "next build && next export",
"storybook": "start-storybook -p 9001",
"size": "npm run build && size-limit",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@svgr/webpack": "^5.5.0",
"bootstrap": "^4.1.3",
"browserslist": "^4.8",
"caniuse-lite": "1.0.30001020",
"express": "^4.16.2",
"gsap": "^3.12.5",
"html-react-parser": "^1.4.0",
"loaders.css": "^0.1.2",
"next": "12.3.4",
"next-page-transitions": "^1.0.0-beta.2",
"next-transpile-modules": "^9.0",
"nodemailer": "^4.6.8",
"nodemon": "^2.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-body-classname": "^1.3.1",
"react-inlinesvg": "^1.1.7",
"react-loaders": "^3.0.1",
"react-router-dom": "^4.3.1",
"react-ssr-prepass": "^1.0.8",
"reactstrap": "^6.4.0",
"sass": "1.32.13",
"serverless-http": "^2.3.0",
"styled-components": "^5.0.0",
"svg-react-loader": "^0.4.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.4",
"@size-limit/file": "^11.1.4",
"@size-limit/time": "^11.1.4",
"@storybook/addon-backgrounds": "^6.4.0",
"@storybook/addon-docs": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-viewport": "^6.4.0",
"@storybook/builder-webpack5": "^6.4.0",
"@storybook/manager-webpack5": "^6.4.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.0",
"@svgr/cli": "^4.3.3",
"@testing-library/cypress": "^8.0.2",
"@types/react": "16.9.17",
"autoprefixer": "7.1.5",
"css-loader": "^6.5.1",
"cypress": "^9.3.1",
"dotenv": "^8.2.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-storybook": "^0.5.0",
"glob": "^7.1.2",
"normalize.css": "^7.0.0",
"react-dom": "^17.0.2",
"resolve-url-loader": "^4.0.0",
"sass-loader": "^12.3.0",
"size-limit": "^11.1.4",
"style-loader": "^3.3.1",
"typescript": "^4.5.4",
"val-loader": "^4.0.0",
"webpack": "^5.63.0"
}
}