-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "nyt-react",
"version": "1.0.0",
"engines": {
"node": "9.11.1"
},
"description": "react NYT app",
"main": "server.js",
"scripts": {
"predeploy": "yarn build",
"start": "if-env NODE_ENV=production && yarn start:prod || yarn start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'nyt-search-react/*'\" \"yarn nyt-search-react\"",
"nyt-search-react": "cd nyt-search-react && yarn start",
"install": "cd nyt-search-react && yarn install",
"build": "cd nyt-search-react && yarn build",
"heroku-postbuild": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geochanto/nyt-react.git"
},
"keywords": [],
"author": "George Chanturidze",
"license": "ISC",
"bugs": {
"url": "https://github.com/geochanto/nyt-react/issues"
},
"homepage": "https://pure-escarpment-61275.herokuapp.com/",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.2",
"case-sensitive-paths-webpack-plugin": "^2.1.2",
"concurrently": "^3.6.0",
"express": "^4.16.3",
"if-env": "^1.0.4",
"mongoose": "^5.2.0",
"morgan": "^1.9.0",
"nodemon": "^1.18.3",
"reactstrap": "^6.3.0",
"request": "^2.87.0"
},
"devDependencies": {
"concurrently": "^3.6.0"
}
}