-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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
{
"name": "snk4ke-server",
"version": "0.0.0",
"license": "unlicensed",
"bin": "dist/cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsnd --respawn --exit-child src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"pino": "^8.8.0",
"protobufjs": "^7.2.2",
"protobufjs-cli": "^1.1.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.4",
"status-code-enum": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"chalk": "^4.1.2",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"pino-pretty": "^9.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"src/tools/mikro-orm/mikro-orm.tools.config.ts"
]
}
}