-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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": "fbapp-api",
"version": "0.0.1",
"description": "NodeJS API for Faculty Feedback Management System",
"main": "dist/index.js",
"scripts": {
"dev": "concurrently \"npm run build:watch\" \"npm run start:watch\"",
"start": "node -r dotenv/config dist/index.js",
"start:watch": "nodemon -r dotenv/config dist/index.js",
"build": "tsc",
"build:watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lifecompilers/fbapp-api.git"
},
"author": "LifeCOMPILERS",
"license": "MIT",
"bugs": {
"url": "https://github.com/lifecompilers/fbapp-api/issues"
},
"homepage": "https://github.com/lifecompilers/fbapp-api#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.0",
"@types/mongoose": "^5.5.8",
"@types/morgan": "^1.7.35",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.4",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
}
}