-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "@clientql/generator",
"description": "Generate strongly typed, flexible & fast client SDK from any GraphQL API",
"repository": "https://github.com/vadistic/clientql",
"author": "Jakub Wadas <vadistic@gmail.com>",
"version": "0.1.0",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"scripts",
"docs"
]
},
"scripts": {
"script:multibuild": "ts-node --project scripts/tsconfig.json scripts/multibuild",
"commit": "git-cz",
"build:esm": "tsc -b -v tsconfig.esm.json",
"build:cjs": "tsc -b -v tsconfig.cjs.json",
"build": "yarn build:esm && yarn build:cjs",
"lint": "eslint --ext .ts,.tsx packages/*/{src,test} examples/*/src",
"format": "yarn prettier {packages/*/src/**,packages/*/test/**examples/*/src/**,docs/src}.{ts,tsx,json,md} -l --write",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@vadistic/eslint-config-node": "^0.1.8",
"@vadistic/prettier-config": "^0.1.8",
"commitizen": "^4.0.3",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-file-snapshot": "^0.3.8",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}