-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.08 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
{
"name": "search.service",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"copy-assets": "cp -rv src/assets/ dist/assets/",
"dev": "tsc && npm run copy-assets && node .",
"start": "npm-run-all -s clean build start:simple",
"start:simple": "node .",
"start:dev": "npm-run-all -s clean build -p watch:*",
"start:debug": "npm-run-all -s clean build -p watch:* debug",
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf dist",
"clean:cov": "rimraf coverage",
"test": "jest",
"lint": "./node_modules/eslint/bin/eslint.js --config ./.eslintrc.json -max-warnings 0 --ignore-path ./.eslintignore ./",
"build": "npm-run-all -s build:ts build:swagger",
"build:ts": "./node_modules/typescript/bin/tsc",
"build:swagger": "node ./dist/tasks/swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/is-paranoia/apex.git"
},
"author": "is-paranoia",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/is-paranoia/apex/issues"
},
"homepage": "https://gitlab.com/is-paranoia/apex#readme",
"imports": {
"@controllers/*": "./controllers/*",
"@routes": "./routes"
},
"dependencies": {
"body-parser": "^1.20.2",
"config": "^3.3.11",
"cors": "^2.8.5",
"express": "4.18.2",
"express-winston": "^4.2.0",
"mongodb": "^6.5.0",
"passport": "^0.7.0",
"swagger-ui-express": "^5.0.0",
"winston": "3.11.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@types/config": "^3.3.4",
"@types/cors": "^2.8.17",
"@types/express": "4.17.21",
"@types/jest": "^29.5.12",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"babel-jest": "^29.7.0",
"eslint": "8.56.0",
"jest": "29.7.0",
"npm-run-all": "^4.1.5",
"tsconfig-paths": "^4.2.0",
"tslint": "6.1.3",
"typescript": "5.3.3"
}
}