-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "medical-professional-next",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "babel-node server.js --presets es2015 stage-2",
"build": "next build",
"start": "babel-node server.js --presets es2015 stage-2",
"start-production": "npm run build && cross-env NODE_ENV=production npm run start",
"lint": "eslint --ext .js,.js .",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicjs/nextjs-website-boilerplate.git"
},
"author": "BitBytes",
"license": "ISC",
"bugs": {
"url": "https://github.com/cosmicjs/nextjs-website-boilerplate/issues"
},
"homepage": "https://github.com/cosmicjs/nextjs-website-boilerplate#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-define": "^1.3.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"compression": "^1.7.1",
"cosmicjs": "^3.1.2",
"cross-env": "^5.1.3",
"es6-promise": "^4.2.2",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"lodash": "^4.17.4",
"mailgun.js": "^2.0.1",
"next": "^5.0.0",
"next-routes": "^1.3.0",
"nodemon": "^1.14.3",
"nprogress": "^0.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0"
}
}