-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 KB
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
{
"name": "merj-app",
"version": "1.0.0",
"description": "MERJ EXCHANGE",
"main": "index.js",
"repository": "https://shaunsaker@bitbucket.org/AUXSTUDIOS/merj-app.git",
"author": "shaunsaker <shaun@aux.co.za>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"postexport": "node ./scripts/postExport.js",
"browser-sync": "browser-sync start --proxy http://localhost:3000/",
"docker-build": "docker build -t merj-app .",
"docker-run": "docker run -p 3000:3000 merj-app",
"pm2-next": "npm run build && pm2 start ./node_modules/next/dist/bin/next-start",
"deploy": "yarn build && NODE_ENV=production yarn start"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"autoprefixer": "^9.4.5",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"detect-browser": "^4.6.0",
"express": "^4.16.4",
"isomorphic-unfetch": "^3.0.0",
"moment": "^2.24.0",
"next": "^7.0.2-canary.47",
"next-compose": "^0.0.2",
"next-fonts": "^0.14.0",
"next-images": "^1.0.3",
"next-plugin-transpile-modules": "^2.0.0",
"nodemailer": "^5.1.1",
"nodemailer-mailgun-transport": "^1.4.0",
"node-sass": "^4.10.0",
"nookies": "^2.0.6",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-ga": "^2.5.7",
"react-google-recaptcha": "^1.0.5",
"react-hubspot-form": "^1.3.7",
"react-icons": "^3.2.2",
"react-markdown": "^4.0.8",
"react-meta-tags": "^0.7.4",
"react-moment": "^0.9.2",
"react-share": "^2.4.0",
"react-twitter-widgets": "^1.7.1",
"bootstrap": "^5.1.3"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"browser-sync": "^2.26.3",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "4.0.0",
"jest": "^24.9.0",
"webpack": "4.20.2"
},
"browserslist": [
"> 1%",
"last 4 versions"
]
}