-
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.37 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.37 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": "clean-node-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepare": "husky install",
"start": "NODE_ENV=production node dist/src/main/index.js",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/main/index.ts",
"build": "rm -rf dist && tsc -p tsconfig-build.json && tscpaths -p tsconfig-build.json -s . -o ./dist",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"lint:staged": "lint-staged",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"seed": "knex seed:run",
"test": "jest --no-cache --passWithNoTests --noStackTrace",
"test:ci": "yarn build && yarn test:coverage",
"test:unit": "yarn test --watch -c jest-unit.config.ts",
"test:integration": "yarn test --watch -c jest-integration.config.ts --runInBand",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:coveralls": "yarn test:coverage && coveralls < coverage/lcov.info",
"check": "yarn upgrade-interactive --latest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.1",
"knex": "^2.4.2",
"pg": "^8.11.1",
"validator": "^13.9.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.2",
"@types/pg": "^8.10.2",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-plugin-root-import": "^6.6.0",
"coveralls": "^3.1.1",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^5.0.4",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"pg-mem": "^2.6.13",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "^5.1.6"
},
"engines": {
"node": "18.x"
}
}