-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.19 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
{
"name": "retro-tool-client",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@graphql-codegen/cli": "^1.8.3",
"@graphql-codegen/typescript": "^1.8.3",
"@graphql-codegen/typescript-operations": "^1.8.3",
"@graphql-codegen/typescript-react-apollo": "^1.8.3",
"@types/graphql": "14.2.0",
"@types/jest": "24.0.13",
"@types/node": "12.0.2",
"@types/reach__router": "1.2.4",
"@types/react": "16.8.18",
"@types/react-beautiful-dnd": "11.0.2",
"@types/react-dom": "16.8.4",
"@types/react-textarea-autosize": "4.3.4",
"@types/styled-components": "4.1.15",
"@types/styled-system": "^5.1.4",
"husky": "2.3.0",
"lint-staged": "8.1.7",
"prettier": "1.17.1",
"typescript": "3.5.0-rc"
},
"dependencies": {
"@absinthe/socket-apollo-link": "0.2.1",
"@apollo/react-hooks": "^3.1.3",
"@reach/dialog": "0.2.8",
"@reach/router": "1.2.1",
"@sentry/browser": "^5.15.5",
"@styled-system/theme-get": "^5.1.2",
"apollo-boost": "^0.4.4",
"apollo-link": "^1.2.13",
"color": "3.1.1",
"graphql": "^14.5.8",
"phoenix": "1.4.6",
"random-textblock": "^1.2.0",
"react": "16.8.6",
"react-beautiful-dnd": "11.0.3",
"react-dom": "16.8.6",
"react-hot-toast": "^1.0.1",
"react-lottie": "^1.2.3",
"react-scripts": "3.0.1",
"react-textarea-autosize": "7.1.0",
"react-use": "^17.2.1",
"styled-components": "4.2.0",
"styled-icons": "7.15.1",
"styled-map": "3.3.0",
"styled-system": "^5.1.4",
"use-debounce": "^3.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"generateTypes": "graphql-codegen --config codegen.yml",
"postinstall": "yarn generateTypes"
},
"proxy": "http://localhost:4000",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,ts,tsx}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}