forked from MapColonies/discrete-agent-db-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.64 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
{
"name": "discrete-agent-db",
"version": "1.3.1",
"description": "This is template for map colonies typescript service",
"main": "./src/index.ts",
"scripts": {
"test:unit": "jest --config=./tests/configurations/unit/jest.config.js",
"test:integration": "jest --config=./tests/configurations/integration/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint:openapi": "openapi lint ./openapi3.yaml",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"test": "npm run test:unit && npm run test:integration",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json && npm run assets:copy",
"start": "npm run build && cd dist && node ./index.js",
"assets:copy": "copyfiles -f ./config/* ./dist/config && copyfiles -f ./openapi3.yaml ./dist/ && copyfiles ./package.json dist",
"clean": "rimraf dist"
},
"directories": {
"test": "tests"
},
"author": "MapColonies",
"license": "ISC",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@map-colonies/error-express-handler": "^1.2.0",
"@map-colonies/mc-logger": "^1.2.1",
"@map-colonies/mc-probe": "^1.0.0",
"config": "^3.3.4",
"express": "^4.17.1",
"express-openapi-validator": "^4.10.5",
"http-status-codes": "^2.1.4",
"js-yaml": "^3.14.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsyringe": "^4.5.0",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^10.0.0",
"@map-colonies/eslint-config": "^2.1.0",
"@redocly/openapi-cli": "^1.0.0-beta.25",
"@types/config": "0.0.36",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.19",
"@types/js-yaml": "^3.12.5",
"@types/multer": "^1.4.5",
"@types/supertest": "^2.0.10",
"@types/swagger-ui-express": "^4.1.2",
"@types/yamljs": "^0.2.31",
"commitlint": "^9.1.2",
"copyfiles": "^2.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-create-mock-instance": "^1.1.0",
"jest-html-reporters": "^2.0.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"supertest": "^6.0.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.1.1",
"typescript": "^3.8.3"
}
}