-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "graphql-vision",
"version": "0.6.1",
"description": "A server for receiving apollo tracing elements and rendering the metrics into a react dashboard",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 \"./src/dashboard/build/**\" \"./dist\" -V -E -a",
"start": "npm run build & ts-node index.ts",
"example": "cd src && cd dashboard && npm run build && cd .. && cd .. && npm run build && cd dist/example && node index",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": {
"name": "Yarin Vaknin",
"url": "http://github.com/yarinvak",
"email": "[email protected]"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"dependencies": {
"@types/express": "^4.17.7",
"@types/graphql-iso-date": "^3.4.0",
"@types/node": "^12.12.50",
"apollo-server": "^2.16.0",
"copyfiles": "^2.3.0",
"graphql": "^14.7.0",
"graphql-iso-date": "^3.6.1",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.10.2",
"typeorm": "^0.2.25",
"typescript": "^3.9.7"
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.1.0-beta.11",
"husky": "^3.1.0"
},
"contributors": [
"yarin vaknin"
],
"files": [
"dist/**/*"
]
}