-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.27 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.27 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
{
"name": "bbcm-programs",
"version": "0.1.0",
"description": "* Since original folder (client-root) has had added/removed files, it would not start. * With moving **SRC FOLDER** out of changed original folder in **CLIENT**, and w/ installed deps, app successfully deployed to **DevBrowser** so I can track changes * Future code adding process **NEED to MAKE SURE to follow/match naming conventions w/ b/e**",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"cd client && npm start\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "cd client && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"webpack-pwa-manifest": "^4.3.0"
},
"dependencies": {
"apollo-server-express": "^3.1.1",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"graphql": "^15.5.1",
"mongoose": "^5.13.5",
"nodemon": "^2.0.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katredford/BBCM.programsDB.git"
},
"bugs": {
"url": "https://github.com/katredford/BBCM.programsDB/issues"
},
"homepage": "https://github.com/katredford/BBCM.programsDB#readme"
}