-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 2.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "intel-api-server",
"version": "0.7.0",
"main": "dist/compiled/app.js",
"bin": "dist/compiled/server.js",
"repository": "https://github.com/dabbu-knowledge-platform/intel-api-server",
"author": "Vedant K (gamemaker1) <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "./scripts/run.sh",
"start:prod": "./scripts/run.sh prod",
"test": "./scripts/test.sh",
"lint": "./scripts/lint.sh",
"fix": "./scripts/fix-lint-errors.sh",
"clean": "./scripts/clean.sh",
"build": "./scripts/build.sh",
"package": "./scripts/package.sh",
"ci": "./scripts/ci.sh",
"bump": "./scripts/bump.sh"
},
"dependencies": {
"env-paths": "^2.2.1",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"helmet": "^4.6.0",
"lda": "^0.2.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nanoid": "^3.1.23",
"office-text-extractor": "^1.4.1",
"sqlite3": "^5.0.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/fs-extra": "^9.0.11",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/nanoid": "^3.0.0",
"@types/node": "^15.6.1",
"@types/sqlite3": "^3.1.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.1",
"lint-staged": "^11.0.0",
"pkg": "^5.2.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"superagent": "^6.1.0",
"supertest": "^6.1.3",
"ts-jest": "^27.0.0",
"typescript": "^4.2.4"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"prettier": {
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 72,
"useTabs": true,
"tabWidth": 2
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "next",
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-unused-vars": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn eslint 'src/**/*.ts' 'tests/**/*.ts' --fix"
]
},
"pkg": {
"outputPath": "dist/binaries/",
"scripts": [
"dist/compiled/**/*.js"
],
"targets": [
"node14-win-x64",
"node14-macos-x64",
"node14-linux-x64",
"node14-alpine-x64"
]
}
}