This repository has been archived by the owner on Aug 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.49 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
{
"name": "secondwheel",
"description": "unopinionated library of functions for those tired of reinventing the wheel",
"author": "Eugene Kuzmenko",
"license": "MIT",
"scripts": {
"test": "flow && standard *.js test/*.js && nyc mocha -t 10000 -R min --exit",
"docs": "documentation build *.js -f html -c documentation.yml --np --project-name secondwheel --project-homepage https://github.com/thealjey/secondwheel --favicon favicon.svg -t theme -o docs",
"semantic-release": "semantic-release",
"cz": "git-cz"
},
"standard": {
"ignore": [
"flow-typed",
"docs",
"coverage"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn test && yarn docs && git add -A"
}
},
"dependencies": {
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-batch-http": "^1.2.11",
"apollo-link-error": "^1.1.10",
"apollo-link-retry": "^2.2.13",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"cheerio": "^1.0.0-rc.2",
"documentation": "^9.3.1",
"dotenv": "^7.0.0",
"github-slugger": "^1.2.1",
"global": "^4.3.2",
"graphql": "^14.2.0",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.11",
"marked": "^0.6.1",
"md5.js": "^1.3.5",
"prismjs": "^1.16.0",
"react-apollo": "^2.5.3",
"react-element-to-jsx-string": "^14.0.2",
"react-test-renderer": "^16.8.5",
"subscriptions-transport-ws": "^0.9.16",
"svg2png": "^4.1.1",
"to-ico": "^1.1.5",
"vinyl": "^2.2.0"
},
"devDependencies": {
"classnames": "^2.2.6",
"commitizen": "^3.0.7",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^2.1.0",
"flow-bin": "^0.95.1",
"husky": "^1.3.1",
"mocha": "^6.0.0",
"next": "^8.0.3",
"nyc": "^13.3.0",
"proxyquire": "^2.1.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"semantic-release": "^15.13.3",
"sinon": "^7.3.1",
"standard": "^12.0.1"
},
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/thealjey/secondwheel.git"
},
"homepage": "https://thealjey.github.io/secondwheel/",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"*.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
}
}