-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "jmt-server",
"version": "1.0.0",
"author": "Hoerin Doh <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"lint": "eslint -c .eslintrc.json 'src/**/*.ts'",
"test": "NODE_ENV=test mocha -r ts-node/register -r test/prepare.ts --fule-trace --reporter dot 'test/**/*.ts'",
"coverage": "NODE_ENV=test nyc mocha -r ts-node/register -r test/prepare.ts --fule-trace --reporter dot 'test/**/*.ts'",
"debug": "nodemon --watch src --ext ts --exec 'yarn build && yarn start'",
"prebuild": "rimraf ./dist",
"build": "tsc",
"start": "node ."
},
"dependencies": {
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"winston": "^3.3.3",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/mocha-prepare": "^0.1.0",
"@types/node": "^12.12.28",
"@types/redis": "^2.8.28",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"mocha-prepare": "^0.1.0",
"nodemon": "^2.0.6",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}