-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
{
"name": "forteapi",
"version": "1.3.1",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "tsc && nodemon",
"dev": "nodemon",
"lint": "npx eslint .",
"test": "mocha -r ts-node/register 'tests/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NinjaNas/ForteAPI.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/NinjaNas/ForteAPI/issues"
},
"homepage": "https://github.com/NinjaNas/ForteAPI#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.1",
"serverless-http": "^3.2.0"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/cors": "^2.8.14",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.20",
"@types/mocha": "^10.0.1",
"@types/node": "^20.9.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}