-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "santa-picker-api",
"version": "0.0.0",
"private": true,
"main": "src/server.ts",
"scripts": {
"start": "ts-node src/server.ts",
"test": "jest --watch"
},
"dependencies": {
"@sendgrid/mail": "^7.2.5",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-jwt": "^6.0.0",
"helmet": "^3.21.3",
"jwks-rsa": "^1.9.0",
"morgan": "~1.9.1",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.3",
"@types/helmet": "^0.0.45",
"@types/morgan": "^1.9.0",
"@types/node": "^13.9.1",
"babel-jest": "^26.3.0",
"jest": "^26.4.2",
"@types/jest": "^26.0.14",
"concurrently": "^5.1.0"
}
}