-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
{
"name": "leanote_fast_search",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"start": "ts-node ./src/index.ts",
"build": "rimraf ./build && tsc",
"build:prod": "NODE_ENV=production npm run build",
"start:prod": "NODE_ENV=production node build/index.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/async": "^3.2.5",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.14",
"@types/cookie": "^0.4.0",
"@types/elasticsearch": "^5.0.37",
"@types/express": "^4.17.11",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"dependencies": {
"@types/glob": "^7.1.3",
"@types/mongoose": "^5.10.3",
"@types/winston": "^2.4.4",
"async": "^3.2.0",
"autoloader-ts": "^2.2.1",
"body-parser": "^1.19.0",
"commander": "^7.0.0",
"cookie": "^0.4.1",
"express": "^4.17.1",
"glob": "^7.1.6",
"html-entities": "^2.1.0",
"inversify": "^5.0.5",
"mongoosastic": "^4.6.0",
"mongoose": "^5.11.14",
"reflect-metadata": "^0.1.13",
"resumer": "0.0.0",
"striptags": "^3.1.1",
"ts-sinon": "^2.0.1",
"winston": "^2.4.5"
}
}