This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.51 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": "nothing-secret",
"version": "1.0.0",
"description": "A REST API referenced to Simo's community",
"main": "src/index.ts",
"scripts": {
"app": "tsx api/index.ts",
"build": "tsc && node dist/api/index.js",
"lint:fix": "eslint . --fix",
"test": "tsx index.spec.ts",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"dev": "ts-node-dev api/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"env-smart": "^2.3.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.2.0",
"ms": "^2.1.3",
"serialize-javascript": "^6.0.1",
"socket.io": "^4.7.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/ms": "^0.7.31",
"@types/serialize-javascript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"tsx": "^3.12.7",
"typescript": "^5.2.2"
}
}