-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 999 Bytes
/
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
{
"name": "forest-api",
"version": "1.0.0",
"description": "The Forest API",
"main": "index.js",
"type": "module",
"scripts": {
"start": "tsc && node --experimental-specifier-resolution=node --harmony-top-level-await bin/index.js",
"test": "jest --detectOpenHandles --forceExit --coverage"
},
"jest": {
"verbose": true,
"preset": "ts-jest"
},
"author": "Karl Felix Beecken, Vincent Woltmann, Jonathan Fritz",
"license": "ISC",
"devDependencies": {
"jest": "^26.1.0",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-jwt": "0.0.42",
"@types/jest": "^26.0.4",
"@types/mongodb": "^3.5.25",
"@types/mongoose": "^5.7.30"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.22"
}
}