-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.16 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": "fazt-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly src/index.ts",
"start": "node dist/index.js",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faztdevelopers/fazt-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/faztdevelopers/fazt-api/issues"
},
"homepage": "https://github.com/faztdevelopers/fazt-api#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.22",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/helmet": "0.0.47",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.30",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.19",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.50",
"typescript": "^3.9.6"
}
}