This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.94 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
{
"name": "the-problematic-api",
"description": "Problems? We GET them. Answers? You POST them.",
"version": "1.0.0",
"author": "Antonin Krivohlavy <[email protected]",
"homepage": "https://github.com/tond4/the-problematic-api",
"engines": {
"node": "^12.4.0"
},
"scripts": {
"start": "npm run app:start",
"start-lr": "tsc-watch --onSuccess \"npm run start\"",
"test": "npm run app:test",
"test-lr": "npm run app:test -- --watch",
"app:compile": "tsc",
"app:start": "cross-env NODE_PATH=dist node -r source-map-support/register dist/index.js",
"app:test": "cross-env NODE_PATH=src jest --detectOpenHandles --forceExit",
"ci-test": "npm run cover -- --reporters=default --reporters=jest-junit --ci",
"ci-lint": "tslint -p . --force -t checkstyle -o ./output/checkstyle-result.xml",
"docs:validate": "npx swagger-cli validate ./docs/openapi.yaml",
"docs:compile": "npx swagger-cli bundle ./docs/openapi.yaml -r -o ./docs/openapi.json",
"lint": "tslint -p . -t codeFrame",
"cover": "npm run app:test -- --collectCoverage",
"check": "npm-check -i app -i errors -i config -i index; exit 0",
"check-win": "npm-check -i app -i errors -i config -i index & exit 0",
"pretty": "prettier --write \"src/**/*.ts\""
},
"jest-junit": {
"outputDirectory": "output",
"outputName": "./test.xml",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}",
"ancestorSeparator": " > ",
"usePathForSuiteName": "true"
},
"dependencies": {
"@types/basic-auth": "^1.1.2",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.138",
"ajv": "^6.10.2",
"basic-auth": "^2.0.1",
"compose-middleware": "^5.0.1",
"configuru": "^0.2.2",
"cosmas": "^2.0.0-rc.2",
"desmond": "^0.5.6",
"http-status-codes": "^1.3.2",
"lodash": "^4.17.15",
"math-expression-evaluator": "^1.2.17",
"mathjs": "^6.2.2",
"node-healthz": "^1.0.1",
"npm-run-series": "^1.0.1",
"sequelize": "^5.19.0",
"source-map-support": "^0.5.13",
"sqlite3": "^4.1.0",
"swagger-cli": "^3.0.1",
"swagger-parser": "^8.0.4",
"tsc-watch": "^2.4.0",
"unicore": "^0.1.7"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.13",
"@types/mathjs": "^6.0.2",
"@types/node": "^12.0.8",
"@types/supertest-as-promised": "^2.0.36",
"@types/validator": "^10.11.3",
"concurrently": "^4.1.0",
"cross-env": "^5.1.6",
"husky": "^2.7.0",
"jest": "^24.9.0",
"jest-chain": "^1.1.2",
"jest-extended": "^0.11.2",
"jest-junit": "^6.4.0",
"lint-staged": "^8.2.1",
"npm-check": "^5.8.0",
"prettier": "^1.15.1",
"prettier-config-ackee": "0.0.13",
"snowboard": "^3.4.1",
"supertest": "^4.0.2",
"supertest-as-promised": "^4.0.2",
"ts-jest": "^24.0.1",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.12.0",
"tslint-config-ackee": "^0.3.0",
"typescript": "^3.6.2"
}
}