-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "stats-service",
"main": "./dist/server/index.js",
"_moduleAliases": {
"@": "src"
},
"paths": {
"@": "src"
},
"scripts": {
"fmt": "eslint --fix .",
"lint": "eslint .",
"dev": "NODE_ENV=development ts-node src/",
"start": "NODE_ENV=production node ./dist/",
"build": "tsc --project tsconfig.json --incremental && tscpaths -p tsconfig.json -s ./src -o ./dist/server"
},
"dependencies": {
"@types/express": "^4.17.12",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.1",
"@types/node-cache": "^4.2.5",
"clickhouse": "^2.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"leveldown": "^6.0.0",
"levelup": "^5.0.0",
"logform": "^2.2.0",
"module-alias": "^2.2.2",
"mongodb": "^3.6.4",
"node-cache": "^5.1.2",
"redis": "^4.0.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"ws": "^7.4.1"
},
"devDependencies": {
"@types/mongodb": "^3.6.8",
"@types/node": "^14.14.14",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint-plugin-prettier": "^3.3.1",
"tscpaths": "^0.0.9",
"typescript": "^4.1.3"
}
}