-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "screen-search",
"version": "1.0.0",
"description": "Simple movie searching web app using algolia",
"main": "api.js",
"scripts": {
"postinstall": "cd client && npm install",
"heroku-postbuild": "npm run build",
"build": "cd client && npm run build",
"start": "npm run build && nodemon api.js",
"production": "node api.js",
"clean": "rm -rf node_modules && rm -rf client/node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/efossier/screen-search.git"
},
"keywords": [
"movies",
"search",
"algolia"
],
"author": "Evan Fossier",
"license": "ISC",
"bugs": {
"url": "https://github.com/efossier/screen-search/issues"
},
"homepage": "https://github.com/efossier/screen-search#readme",
"dependencies": {
"algoliasearch": "^3.27.0",
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"nodemon": "^1.17.3",
"yarn": "^1.6.0"
}
}