-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "nextjs-site",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next -p 7777",
"build": "next build",
"create-sendgrid-secret": "now secret add sendgrid-api-key YOUR_API_KEY_HERE",
"start": "next start",
"export": "next export",
"analyze": "BUNDLE_ANALYZE=both next build",
"analyze:server": "BUNDLE_ANALYZE=server next build",
"analyze:browser": "BUNDLE_ANALYZE=browser next build",
"now-build": "next build",
"deploy": "now"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@mdx-js/mdx": "^0.15.0",
"@sendgrid/mail": "^6.3.1",
"@zeit/next-mdx": "1.2.0",
"axios": "^0.18.0",
"dotenv-webpack": "^1.7.0",
"html-react-parser": "0.6.2",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"next": "8.0.3",
"next-compose-plugins": "^2.1.1",
"next-optimized-images": "^2.3.3",
"now": "^14.0.3",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"remark-images": "^0.17.0",
"responsive-loader": "^1.2.0",
"sharp": "^0.21.3",
"styled-components": "^4.1.3",
"webp-loader": "^0.4.0",
"webpack": "^4.29.3"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@zeit/next-bundle-analyzer": "^0.1.2",
"babel-plugin-inline-react-svg": "0.4.0"
},
"peerDependencies": {},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
"inline-react-svg",
"@babel/plugin-syntax-dynamic-import"
]
}
}