This repository has been archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.45 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
{
"private": false,
"name": "ce-api",
"version": "1.7.0",
"description": "API Node.js application for TROMPA Contributor Environment",
"main": "src/index.js",
"license": "Apache-2.0",
"repository": {
"type": "GIT",
"url": "https://github.com/trompamusic/ce-api"
},
"dependencies": {
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-server": "^2.25.3",
"apollo-server-express": "^2.21.1",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"cors": "^2.8.5",
"express": "4.17.1",
"graphql": "^15.5.0",
"graphql-auth-directives": "^2.2.2",
"graphql-tag": "^2.12.5",
"graphql-tools": "^4.0.8",
"js-green-licenses": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"micromatch": "^4.0.2",
"neo4j-driver": "4.2.3",
"neo4j-graphql-js": "^2.19.2",
"validator": "13.7.0",
"walk-sync": "2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@types/jest": "^24.0.25",
"babel-jest": "^24.9.0",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-varspacing": "^1.2.2",
"husky": "^5.1.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2"
},
"scripts": {
"build": "rimraf ./dist && babel ./src --out-dir ./dist --copy-files",
"build:debug": "rimraf ./dist && babel ./src --out-dir ./dist --copy-files --source-maps",
"lint": "eslint src tests",
"start": "nodemon --exec babel-node --watch src src/index.js",
"start:prod": "node dist/index.js",
"test:unit": "jest ./src",
"test:functional": "CI=true jest ./tests/functional",
"version": "conventional-changelog -i CHANGELOG.md -s && git add -A CHANGELOG.md",
"check-licenses": "jsgl --local ./"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && lint-staged"
}
},
"lint-staged": {
"*.{js,json,css": [
"eslint --fix",
"git add"
]
},
"jest": {
"coverageReporters": [
"json",
"lcov"
]
}
}