-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.22 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
39
40
41
42
43
{
"name": "digitous",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"ncu": "ncu -u",
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"prod": "tsc && node ./dist/index.js",
"start": "tsc && node ./dist/index.js",
"lint": "node_modules\\.bin\\eslint --ext .ts --quiet .",
"lint:fix": "node_modules\\.bin\\eslint --ext .ts --quiet --fix ."
},
"dependencies": {
"@types/express": "^4.17.2",
"@types/gapi": "0.0.39",
"@types/uuid": "^8.3.0",
"@types/xml2js": "^0.4.5",
"body-parser": "^1.19.0",
"codeowners": "^4.1.1",
"express": "^4.17.1",
"moment": "^2.24.0",
"node-input-validator": "^4.2.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"ts-node-dev": "^1.0.0-pre.63",
"ts-polyfill": "^3.8.2",
"typescript": "^3.7.2",
"uuid": "^8.3.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}