-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.47 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
{
"name": "@bcgsc-pori/graphkb-api",
"main": "server.js",
"version": "3.15.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/bcgsc/pori_graphkb_api.git"
},
"bugs": {
"email": "[email protected]"
},
"license": "GPL-3.0",
"description": "GraphKB (Knowledge Base) REST API server",
"dependencies": {
"@bcgsc-pori/graphkb-parser": "^2.0.0",
"@bcgsc-pori/graphkb-schema": "^4.0.0",
"ajv": "^6.10.2",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "^2.8.4",
"express": "^4.14.0",
"form-urlencoded": "^3.0.0",
"http-status-codes": "^1.3.0",
"json-cycle": "^1.2.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"orientjs": "^3.2.0",
"portfinder": "^1.0.20",
"request-promise": "^4.2.1",
"semver": "^5.6.0",
"sleep-promise": "^8.0.1",
"split": "^1.0.1",
"swagger-ui-express": "^3.0.10",
"uuid": "^3.0.1",
"winston": "^3.0.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^4.3.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jest-formatting": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"jest": "^26.6.3",
"jest-circus": "^27.3.1",
"jest-environment-node": "^26.6.2",
"jest-junit": "^13.0.0",
"js-beautify": "^1.10.0",
"qs": "^6.5.2"
},
"scripts": {
"start": "NODE_ENV=development node bin/server.js",
"start:prod": "NODE_ENV=production node bin/server.js",
"start:staging": "NODE_ENV=production node bin/server.js",
"start:dev": "NODE_ENV=development node bin/server.js",
"start:test": "NODE_ENV=test node bin/server.js",
"start:local": "NODE_ENV=local node bin/server.js",
"test": "NODE_ENV=test jest --config config/jest/config.js --detectOpenHandles --forceExit",
"test:unit": "NODE_ENV=test jest --config config/jest/unit.config.js",
"test:integration": "NODE_ENV=test jest --config config/jest/config.js --testRegex test/db_integration",
"lint": "eslint -c .eslintrc.json src test",
"version": "echo $npm_package_version",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}