-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 897 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 897 Bytes
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
{
"name": "refga-api",
"version": "1.0.0",
"description": "API to connect with MongoDB for ReFasm.ga",
"main": "dist/main.js",
"type": "module",
"scripts": {
"watch": "tsc --watch ",
"build": "tsc",
"start": "node dist/main.js",
"dev": "nodemon --inspect ./dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"api",
"refasm"
],
"author": "StarNumber12046",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.1",
"dotenv": "^16.1.4",
"express": "^4.21.1",
"express-rate-limit": "^6.6.0",
"mongoose": "^6.12.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"typescript": "^4.8.4"
}
}