-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 4.23 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "graphql-clientgen",
"version": "2.2.8",
"description": "Generate client script for graphql projects",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/antoniopresto/graphql-clientgen",
"license": "MIT",
"keywords": [],
"bin": {
"get-client": "build/lib/bin.js"
},
"scripts": {
"describe": "npm-scripts-info",
"build": "run-s clean build:* copy-files",
"build:main": "tsc -p tsconfig.json",
"copy-files": "node scripts/copy-files.js",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"test": "jest",
"test:server": "nodemon --watch ./scripts --exec \"node ./scripts/tests-server.js\"",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"copy-files\" \"test:integration -- --watch\"",
"doc": "run-s doc:html && opn build/docs/index.html",
"doc:html": "typedoc src/ --exclude \"**/+(__tests__|dev)/*\" --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude \"**/+(__tests__|dev)/*\" --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset": "git clean -dfx && git reset --hard && yarn install",
"clean": "trash build test",
"all": "run-s reset build",
"prepare-release": "run-s all version",
"beta": "npm run build && standard-version --prerelease beta && npm publish --tag beta",
"dev": "nodemon --watch ./src -e ts,tsx --exec \"npm run build:main && npm run copy-files && node ./scripts/tests-server.js\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"test": "unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"version": "Bump package.json version, update CHANGELOG.md, tag release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"@graphql-codegen/typescript": "1.2.1",
"@types/mocha": "^5.2.7",
"fs-extra": "^8.1.0",
"get-port": "^5.1.0",
"got": "^10.2.1",
"lodash": "^4.17.11",
"meow": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@testing-library/react": "^9.4.0",
"@types/cors": "^2.8.6",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/faker": "^4.1.8",
"@types/fs-extra": "^8.0.0",
"@types/got": "^9.6.0",
"@types/graphql": "^14.2.1",
"@types/jest": "^24.0.25",
"@types/meow": "^5.0.0",
"@types/node": "^12.0.8",
"@types/react": "^16.8.22",
"@types/shelljs": "^0.8.5",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^9.1.1",
"cors": "^2.8.5",
"cz-conventional-changelog": "^2.1.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"faker": "^4.1.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"get-port": "^5.1.0",
"gh-pages": "^2.0.1",
"graphql": "^14.3.1",
"graphql-compose": "^7.8.0",
"graphql-tools": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"node-fetch": "^2.6.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"opn-cli": "^4.0.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.12.0",
"shelljs": "^0.8.3",
"sinon": "^7.3.2",
"standard-version": "^4.4.0",
"trash-cli": "^1.4.0",
"ts-jest": "^24.2.0",
"tsc-watch": "^2.2.1",
"typedoc": "^0.14.2",
"typescript": "^3.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
}
}