This repository has been archived by the owner on Mar 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
{
"name": "4l1-service",
"version": "0.1.0",
"description": "API Service for 4l1 project",
"main": "dist/index.js",
"repository": "https://github.com/kriogenia/4l1-service",
"author": "Ricardo Soto Estévez",
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=v15.7.0"
},
"scripts": {
"build": "tsc --project tsconfig-prod.json && tscpaths -p tsconfig-prod.json -s ./src -o ./dist",
"dev": "ts-node-dev --respawn -r tsconfig-paths/register ./src/index.ts -e development",
"prod": "tsc --project tsconfig-prod.json && tscpaths -p tsconfig-prod.json -s ./src -o ./dist",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@typegoose/typegoose": "^9.6.2",
"arr-union": "^3.1.0",
"command-line-args": "^5.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"google-auth-library": "^7.5.0",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"jet-logger": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.1",
"morgan": "^1.10.0",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"tscpaths": "^0.0.9",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/command-line-args": "^5.0.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/node": "15.14.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.2.2",
"mongodb-memory-server": "^7.3.5",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1"
}
}