This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.36 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
{
"name": "democracy-front-end",
"version": "0.1.0",
"license": "UNLICENSED",
"private": true,
"browser": true,
"env": {
"browser": true,
"node": true
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fix": "xo . --fix",
"lint": "xo .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"xo": {
"envs": [
"browser",
"es2020"
],
"extends": [
"xo-react"
],
"rules": {
"unicorn/filename-case": 0,
"react/prop-types": 0,
"@typescript-eslint/consistent-type-assertions": 0
},
"overrides": [
{
"files": "lib/*",
"rules": {
"@typescript-eslint/no-implicit-any-catch": 1,
"@typescript-eslint/prefer-optional-chain": 1,
"import/no-extraneous-dependencies": 1
}
}
]
},
"dependencies": {
"@apollo/client": "^3.3.7",
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"deepmerge": "^4.2.2",
"fontsource-roboto": "^4.0.0",
"graphql": "^15.5.0",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"next": "10.0.6",
"react": "17.0.1",
"react-data-table-component": "7.0.0-alpha-5",
"react-dom": "17.0.1",
"styled-components": "^5.2.1",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/react": "^6.1.15",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-graphql-tag": "^3.2.0",
"babel-plugin-import": "^1.13.3",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.37.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql-tag": "^2.11.0",
"typescript": "^4.1.3",
"xo": "^0.37.1"
}
}