-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
{
"name": "imagematcher",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx ts-node build.ts",
"lint": "npx eslint --ext .ts src/ --fix",
"lint:tests": "npx eslint --ext .ts spec/",
"start": "node -r module-alias/register ./dist --env=production",
"dev": "nodemon",
"test": "nodemon --config ./spec/nodemon.json",
"test:no-reloading": "npx ts-node --files -r tsconfig-paths/register ./spec"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node --files -r tsconfig-paths/register ./src"
},
"_moduleAliases": {
"@entities": "dist/entities",
"@shared": "dist/shared",
"@routes": "dist/routes",
"@services": "dist/services",
"@schemas": "dist/schemas"
},
"dependencies": {
"command-line-args": "^5.2.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.0",
"http-status-codes": "^2.2.0",
"jet-logger": "^1.2.6",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"pg": "^8.8.0",
"typeorm": "^0.3.10",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/cookie-parser": "^1.4.3",
"@types/morgan": "^1.9.3",
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
},
"author": "",
"license": "ISC"
}