-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) 路 1.86 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) 路 1.86 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gray-sales-backend",
"version": "1.0.0",
"description": "GraySales Backend",
"main": "src/index.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "mocha --recursive --timeout 10000 --exit build/test",
"build": "tsc -p . && cp -r public build/public"
},
"repository": {
"type": "git",
"url": "https://github.com/davydocsurg/gray-sales-backend"
},
"keywords": [
"typescript",
"javascript",
"nodejs"
],
"author": "davydocsurg",
"license": "ISC",
"dependencies": {
"@paystack/paystack-sdk": "^1.0.1",
"@types/multer": "^1.4.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"chalk": "^4.1.2",
"cloudinary": "^1.32.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.0",
"multer": "^1.4.5-lts.1",
"slugify": "^1.6.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-mongo": "^3.1.3",
"@types/connect-mongodb-session": "^2.4.4",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.11.5",
"@types/validator": "^13.7.10"
}
}