-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.64 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bonfire-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"start": "TS_NODE_DEV=false node dist/main/server.js",
"homolog": "sucrase-node src/main/server.ts",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/main/server.ts",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli",
"typeorm:prod": "TS_NODE_DEV=false ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand --no-cache",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:staged": "npm test -- --passWithNoTests",
"test:unit": "npm test -- --watch -c jest-unit.config.js",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"test:integration": "npm test -- --watch -c jest-integration.config.js",
"test-ci:unit": "jest --passWithNoTests --silent --noStackTrace --runInBand --no-cache -c jest-unit.config.js",
"test-ci:integration": "jest --passWithNoTests --silent --noStackTrace --runInBand --no-cache -c jest-integration.config.js"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fast-glob": "^3.2.7",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.3.0",
"typeorm": "^0.2.29",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"git-commit-msg-linter": "^3.2.8",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-mock": "^27.4.2",
"lint-staged": "^12.1.2",
"pg-mem": "^2.1.9",
"rimraf": "^3.0.2",
"sucrase": "^3.20.3",
"supertest": "^6.1.6",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"_moduleAliases": {
"@": "dist"
}
}