This repository has been archived by the owner on Dec 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "graphql_examples",
"version": "0.1.2",
"description": "",
"main": "index.js",
"scripts": {
"release": "standard-version",
"commit": "npx git-cz",
"build": "run-p build:jsfortune build:jslastfm build:tslastfm",
"build:jsfortune": "cd js/fortune-api && npm run build && git add schema.graphql",
"build:jslastfm": "cd js/lastfm && npm run build && git add schema.graphql",
"build:tslastfm": "cd typescript/lastfm && npm run build && git add schema.graphql",
"test": "npm ci && run-p test:jsfortune test:jslastfm test:tslastfm",
"test:jsfortune": "npm ci && cd js/fortune-api && npm cit",
"test:jslastfm": "npm ci && cd js/lastfm && npm cit",
"test:tslastfm": "npm ci && cd typescript/lastfm && npm cit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matt-riley/graphql_examples.git"
},
"keywords": [],
"author": "Matt Riley <matt@mattriley.me> (https://mattriley.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-riley/graphql_examples/issues"
},
"homepage": "https://github.com/matt-riley/graphql_examples#readme",
"devDependencies": {
"@arkweid/lefthook": "0.7.7",
"commitizen": "4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.29.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"npm-run-all": "4.1.5",
"standard-version": "9.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard-version": {
"skip": {
"tag": true
}
}
}