-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.24 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
{
"name": "word-graph",
"version": "1.0.0",
"description": "* [Live Site](#) * [Background and Overview](#background-and-overview) * [Functionality and MVP Features](#functionality-and-mvp-features) * [Architecture and Technologies](#architecture-and-technologies) * [Implementation Timeline](#implementation-timeline) ## Background and Overview",
"main": "index.js",
"scripts": {
"start": "node app.js",
"server": "nodemon app.js",
"server-inspect": "nodemon --inspect app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jli57/word-graph.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jli57/word-graph/issues"
},
"homepage": "https://github.com/jli57/word-graph#readme",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"request": "^2.88.0"
},
"devDependencies": {
"nodemon": "^1.18.7"
}
}