This repository was archived by the owner on Nov 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.83 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.83 KB
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
{
"name": "typed-ui",
"version": "0.6.1",
"description": "Generic UI for the GraphQL Schema Language",
"browser": "lib/index.js",
"module": "es/index.js",
"files": ["es", "lib", "umd"],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"demo": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test:coverage --server",
"docs:prepare": "gitbook install",
"docs:api":
"jsdoc2md --configure tooling/docs/jsdoc.json --files src/**/*.js > docs/api.md",
"docs:build": "run-s docs:prepare docs:api && gitbook build",
"docs:serve": "yarn docs:build && gitbook serve",
"docs:clean": "rm -rf _book",
"docs:publish": "yarn docs:build && yarn gh-pages -d _book",
"dev": "yarn && run-p docs:serve test:watch demo",
"precommit": "pretty-quick --staged && yarn prepublishOnly",
"prepublishOnly": "run-s clean test clean build",
"postpublish": "yarn docs:publish",
"cz": "git-cz",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"dependencies": {
"deepmerge": "^2.1.1",
"graphql": "^0.13.2",
"lodash": "^4.17.10"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.49",
"@material-ui/core": "^1.3.1",
"babel-core": "^6.26.3",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cz-conventional-changelog": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fuzzer": "^0.2.1",
"gh-pages": "^1.1.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-highlight": "^2.0.3",
"husky": "^0.14.3",
"jsdoc-babel": "^0.4.0",
"jsdoc-to-markdown": "^4.0.1",
"npm-run-all": "^4.1.3",
"nwb": "0.21.x",
"prettier": "^1.12.1",
"pretty-quick": "^1.4.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"sinon": "^6.1.4",
"travis-deploy-once": "^5.0.0",
"typeface-roboto": "^0.0.54"
},
"author": "Pi Cubed",
"homepage": "https://github.com/pi-cubed/typed-ui",
"license": "MIT",
"repository": "https://github.com/pi-cubed/typed-ui",
"keywords": ["react-component", "graphql", "react", "ui"],
"bugs": "https://github.com/pi-cubed/typed-ui/issues",
"contributors": [
{
"name": "Dylan Richardson",
"email": "dylanrichardson1996@gmail.com",
"url": "https://github.com/drich14"
},
{
"name": "Craig Valenti",
"email": "cvalenti312@gmail.com",
"url": "https://github.com/CrazyCreje"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}