-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "sfle-knowledgebase",
"version": "1.0.0",
"description": "**Get Started**",
"main": "server.js",
"scripts": {
"client-install": "cd client && npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/panza8484/capstone-slfe-knowledgebase.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/panza8484/capstone-slfe-knowledgebase/issues"
},
"homepage": "https://github.com/panza8484/capstone-slfe-knowledgebase#readme",
"dependencies": {
"aws-sdk": "^2.435.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jquery": "^3.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"multer": "^1.4.1",
"pdfkit": "^0.9.0",
"popper.js": "^1.15.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"nodemon": "^1.18.4"
},
"engines": {
"node": "8.12.0",
"npm": "6.4.1"
}
}