-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.64 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": "gullit",
"version": "1.0.0",
"description": "Web frontend for SportySpots",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"start": "next start",
"lint-staged": "lint-staged",
"lint": "eslint pages",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"graphql:updateSchema": "get-graphql-schema https://api.sportyspots.com/graphql > schema.graphql",
"graphql:updateSchemaJSON": "get-graphql-schema https://api.sportyspots.com/graphql > schema.graphql.json --json",
"proxy": "node proxy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SportySpots/gullit.git"
},
"keywords": [
"sportyspots"
],
"author": "SportSpots team",
"license": "ISC",
"bugs": {
"url": "https://github.com/SportySpots/gullit/issues"
},
"homepage": "https://github.com/SportySpots/gullit#readme",
"dependencies": {
"@storybook/addon-storyshots": "^5.0.6",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"babel-polyfill": "^6.26.0",
"eslint-config-airbnb": "^17.1.0",
"express": "^4.16.4",
"graphql": "^14.2.1",
"graphql-anywhere": "^4.2.1",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.11",
"microicon": "^1.0.0-b.2",
"moment": "^2.24.0",
"next": "^8.0.4",
"node-fetch": "^2.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^2.5.4",
"react-dom": "^16.8.6",
"rebass": "^3.1.0",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.6",
"@storybook/addon-links": "^5.0.6",
"@storybook/addons": "^5.0.6",
"@storybook/react": "^5.0.6",
"apollo-link-schema": "^1.2.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"cors-anywhere": "^0.4.1",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"faker": "^4.1.0",
"get-graphql-schema": "^2.1.2",
"graphql-tools": "^4.0.4",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"react-test-renderer": "^16.8.6"
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}