-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "research-engine-api",
"version": "0.0.1",
"description": "API for ReSearch site",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"dev": "tsc -w && nodemon build/index.js",
"doc": "jsdoc -d docs build/index.js"
},
"keywords": [
"API",
"nodejs",
"expressjs"
],
"author": "Christian Harjuno (SorataBaka)",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"googleapis": "^95.0.0",
"jwt-decode": "^3.1.2",
"mongoose": "^6.2.3",
"morgan": "^1.10.0",
"nanoid": "^3.3.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SorataBaka/ReSearch-API.git"
},
"bugs": {
"url": "https://github.com/SorataBaka/ReSearch-API/issues"
},
"homepage": "https://github.com/SorataBaka/ReSearch-API#readme"
}