-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
48
49
50
51
52
53
54
{
"name": "campaign_api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"test": "mocha test/all/*.*js",
"start": "nodemon -L src/server.js",
"dev": "nodemon -L src/server.js",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HimanshuAgrahari07/Campaign_API.git"
},
"author": "HimanshuAgrahari07",
"license": "MIT",
"bugs": {
"url": "https://github.com/HimanshuAgrahari07/Campaign_API/issues"
},
"homepage": "https://github.com/HimanshuAgrahari07/Campaign_API#readme",
"devDependencies": {
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^9.2.1",
"node-fetch": "^3.2.0",
"nodemon": "^2.0.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"body-parser": "^1.19.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie-parser": "^1.4.6",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mariadb": "^2.5.5",
"multer": "^1.4.4",
"node-notifier": "^10.0.0",
"nodemailer": "^6.7.2",
"request": "^2.88.2",
"tslint": "^6.1.3",
"typescript-eslint-parser": "^22.0.0",
"winston": "^3.4.0"
}
}