-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
55
56
57
58
{
"name": "ballot-buddy",
"version": "1.0.0",
"description": "API server for ballot buddy",
"main": "dist/server.js",
"scripts": {
"test": "mocha",
"start": "tsc && node dist/server.js",
"dev": "nodemon dist/server.js",
"watch": "tsc -w"
},
"keywords": [],
"author": "Anthony Silveira",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.10",
"@types/passport": "^1.0.3",
"@types/passport-jwt": "^3.0.3",
"axios": "^0.19.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.12",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.4",
"@types/faker": "^4.1.12",
"@types/mocha": "^8.0.3",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.0",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.1.1",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"tslint": "^6.1.1"
}
}