-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "deepint-external-source-json",
"version": "1.0.0",
"description": "Static JSON external source for Deep Intelligence",
"main": "dist/index.js",
"scripts": {
"watch": "npm run watch:ts",
"watch:ts": "npm run build:ts -- --watch --diagnostics",
"prebuild": "npm run lint",
"compile": "tsc --pretty",
"build": "rimraf dist && tsc --pretty",
"lint": "eslint --fix src/**/*.ts",
"start": "node dist/index.js"
},
"engines": {
"node": ">= 10.16.3"
},
"author": "",
"license": "ISC",
"private": true,
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"dependencies": {
"@asanrom/express-swagger-generator": "^2.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"form-data": "^4.0.0"
}
}