-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.41 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
{
"name": "sturmglas",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"dev:start-services": "docker-compose --env-file .env.local --project-name=sturmglas up",
"graphql:generate": "graphql-codegen --watch app/queries"
},
"dependencies": {
"@apollo/client": "^3.4.5",
"@auth0/nextjs-auth0": "^1.5.0",
"@chakra-ui/icons": "^1.0.14",
"@chakra-ui/react": "^1.6.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"apollo-server": "^3.3.0",
"apollo-server-micro": "^3.1.2",
"chart.js": "^3.5.1",
"chartjs-plugin-datalabels": "^2.0.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"eslint-plugin-react": "^7.25.0",
"framer-motion": "^4.1.17",
"googleapis": "^84.0.0",
"graphql": "^15.5.1",
"graphql-subscriptions": "^1.2.1",
"graphql-type-json": "^0.3.2",
"html-to-image": "^1.7.0",
"luxon": "^2.0.2",
"micro-cors": "^0.1.1",
"next": "^11.1.0",
"next-pwa": "^5.2.24",
"pg": "^8.7.1",
"react": "17.0.2",
"react-apollo-network-status": "^5.0.1",
"react-chartjs-2": "^3.0.4",
"react-dom": "17.0.2",
"react-google-login": "^5.2.2",
"react-hook-form": "^7.12.2",
"react-horizontal-scrolling-menu": "^2.0.7",
"react-icons": "^4.2.0",
"react-select": "^4.3.1",
"react-tiny-fab": "^4.0.3",
"react-wordcloud": "^1.2.7",
"reflect-metadata": "^0.1.13",
"sass": "^1.37.5",
"type-graphql": "^1.1.1",
"typeorm": "^0.2.36"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@graphql-codegen/cli": "2.0.1",
"@graphql-codegen/typescript": "2.0.0",
"@graphql-codegen/typescript-operations": "2.0.1",
"@graphql-codegen/typescript-react-apollo": "3.0.0",
"@graphql-codegen/typescript-resolvers": "^2.0.0",
"@types/luxon": "^2.0.0",
"@types/micro-cors": "^0.1.2",
"@types/react": "17.0.15",
"@types/react-select": "^4.0.17",
"@types/web-bluetooth": "^0.0.11",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.2",
"ts-node": "^9.1.1",
"typescript": "4.3.5"
}
}