-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.63 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
{
"name": "trollo-frontend",
"version": "1.0.0",
"description": "Backend for the Trello clone - Trollo, a maturita project",
"main": "src/index.ts",
"repository": "https://github.com/sproott/trollo-backend",
"author": "sproott <david.hrabe12@seznam.cz>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "fetch-graphql-schema http://localhost:4000/graphql -o schema.json && graphql-codegen --config codegen.yml"
},
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons": "^4.5.0",
"@apollo/client": "^3.3.11",
"@hookform/resolvers": "^1.3.5",
"@types/react-dnd-multi-backend": "^6.0.0",
"antd": "^4.13.1",
"dayjs": "^1.10.4",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"immer": "^8.0.1",
"less": "^4.1.1",
"lodash": "^4.17.21",
"next": "10.0.5",
"react": "17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-copy-to-clipboard": "^5.0.3",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^11.1.3",
"react-dom": "17.0.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.15.4",
"react-is": "^17.0.1",
"recoil": "^0.1.3",
"styled-components": "^5.2.1",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.2",
"@graphql-codegen/import-types-preset": "^1.18.1",
"@graphql-codegen/typescript": "^1.21.1",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@graphql-codegen/typescript-react-apollo": "^2.2.2",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.32",
"@types/react": "^17.0.3",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@zeit/next-less": "^1.0.1",
"antd-dayjs-webpack-plugin": "^1.0.6",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-unused-imports": "^1.1.0",
"fetch-graphql-schema": "^0.2.1",
"less-vars-to-js": "^1.3.0",
"null-loader": "^4.0.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"resolutions": {
"dayjs": "^1.8.36",
"subscriptions-transport-ws": "^0.9.18",
"react-is": "^16.8.0",
"babel-plugin-styled-components": "^1.11.1"
}
}