-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.54 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "utom.is",
"version": "0.0.0",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json,yml,css,html}": [
"prettier --write",
"git add"
],
"*.{ts,js}": [
"eslint --fix",
"jest --bail --findRelatedTests",
"git add"
]
},
"scripts": {
"start": "node ./start",
"start:dev": "ts-node ./start",
"test": "jest",
"check:eslint": "eslint --ext=js,ts .",
"check:prettier": "prettier --check '**/*.{js,jsx,ts,tsx,md,json,yml,css,html}'",
"check:tsc": "tsc --noEmit",
"build-tsc": "tsc --build",
"remove-dist": "ts-node support/remove-dist.ts",
"copy-static": "ts-node support/copy-static.ts",
"install-prod-deps": "ts-node support/install-dependencies.ts",
"build": "run-s remove-dist build-tsc copy-static install-prod-deps",
"db:migrate": "sequelize-cli db:migrate",
"db:seed": "sequelize-cli db:seed:all"
},
"dependencies": {
"argon2": "^0.26.1",
"config": "^3.3.0",
"cookie-parser": "~1.4.4",
"debug": "~4.1.1",
"express": "~4.17.1",
"express-rate-limit": "^5.1.1",
"express-winston": "^4.0.3",
"got": "^10.6.0",
"http-errors": "~1.7.3",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.5",
"sqlite3": "^4.1.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/bluebird": "^3.5.29",
"@types/config": "0.0.36",
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/express-rate-limit": "^5.0.0",
"@types/fs-extra": "^8.1.0",
"@types/http-errors": "^1.6.3",
"@types/jest": "^25.1.4",
"@types/morgan": "^1.9.0",
"@types/node": "^13.7.7",
"@types/redis-mock": "^0.17.0",
"@types/supertest": "^2.0.8",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-security": "^1.4.0",
"faker": "^4.1.0",
"fs-extra": "^8.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"nock": "^12.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"redis-mock": "^0.49.0",
"sequelize-cli": "^5.5.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}