-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.8 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
{
"name": "ai",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_MODE=production nodemon -L -e ts --watch src --delay 1 --exec ts-node -r tsconfig-paths/register src/index.ts",
"dev": "npm run swagger & cross-env NODE_MODE=development nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"swagger": "swagger-cli bundle ./docs/swagger.yaml --outfile ./dist/swagger.yaml --type yaml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"detect-file-encoding-and-language": "^2.2.2",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"http-status-codes": "^2.2.0",
"iconv-lite": "^0.6.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"proj4": "^2.8.0",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^4.4.0",
"tsconfig-paths": "^4.0.0",
"winston-daily-rotate-file": "^4.7.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-status-codes": "^1.2.0",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.31",
"@types/proj4": "^2.5.2",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}