This repository has been archived by the owner on May 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "server",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start:prod": "node dist/index.js",
"dev": "npx nodemon src/index.ts",
"test": "jest --verbose --config ./tests/jest-unit.json",
"test:doh": "jest --detectOpenHandles --verbose --config ./tests/jest-unit.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"dock": "docker build . -t qc-server && docker run -d -p 8100:8100 --name qc-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@swc/core": "^1.3.29",
"@swc/jest": "^0.2.24",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/ioredis-mock": "^8.2.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"ioredis-mock": "^8.2.2",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@codemirror/collab": "^6.0.0",
"@codemirror/state": "^6.1.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-auth-library": "^8.7.0",
"inversify": "^6.0.1",
"ioredis": "^5.3.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.3",
"typedi": "^0.10.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}