-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathpackage.json
116 lines (116 loc) · 3.66 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "course-platform",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next start -p 3002",
"staging": "next start -p 3003",
"dev": "concurrently \"next\" \"npm run codegen --watch\"",
"build": "next build",
"test:ci": "jest",
"test": "jest --watch",
"codegen": "graphql-codegen"
},
"author": "Robin Wieruch <[email protected]> (https://www.robinwieruch.de)",
"license": "MIT",
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"@mdx-js/loader": "1.5.7",
"@mdx-js/runtime": "1.5.7",
"@next/mdx": "9.3.1",
"@nivo/calendar": "0.61.1",
"@paypal/checkout-server-sdk": "1.0.2",
"@sentry/browser": "5.14.2",
"@sentry/node": "5.14.2",
"@types/file-saver": "2.0.1",
"@types/js-cookie": "2.2.5",
"@types/lodash.invert": "4.3.6",
"@types/lodash.omit": "4.5.6",
"@types/lodash.sortby": "4.7.6",
"@types/micro-cors": "0.1.0",
"@types/microrouter": "3.1.1",
"@types/react-css-transition-replace": "2.1.3",
"@zeit/next-less": "1.0.1",
"@zeit/next-source-maps": "0.0.4-canary.1",
"antd": "3.26.13",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.8",
"apollo-link-context": "1.0.19",
"apollo-link-error": "1.1.12",
"apollo-link-http": "1.5.16",
"apollo-server": "2.11.0",
"apollo-server-micro": "2.11.0",
"aws-sdk": "2.642.0",
"axios": "0.19.2",
"b64-to-blob": "1.2.19",
"babel-plugin-transform-typescript-metadata": "0.3.0",
"class-validator": "0.11.1",
"dotenv": "8.2.0",
"file-saver": "2.0.2",
"firebase": "7.11.0",
"firebase-admin": "8.10.0",
"graphql": "14.6.0",
"graphql-middleware": "4.0.2",
"graphql-middleware-sentry": "3.2.1",
"graphql-shield": "7.2.1",
"isomorphic-unfetch": "3.0.0",
"js-cookie": "2.2.1",
"less": "3.11.1",
"localforage": "1.7.3",
"lodash.invert": "4.3.0",
"lodash.omit": "4.5.0",
"lodash.sortby": "4.7.0",
"micro-cors": "0.1.1",
"microrouter": "3.1.3",
"next": "9.3.1",
"next-cookies": "2.0.3",
"next-page-transitions": "1.0.0-beta.2",
"next-with-apollo": "4.3.0",
"null-loader": "3.0.0",
"pg": "7.18.2",
"prism-react-renderer": "1.0.2",
"raw-body": "2.4.1",
"react": "16.13.0",
"react-apollo-network-status": "3.0.0",
"react-async-script-loader": "0.3.0",
"react-css-transition-replace": "4.0.2",
"react-dom": "16.13.0",
"react-ga": "2.7.0",
"react-player": "1.15.2",
"reflect-metadata": "0.1.13",
"stripe": "8.32.0",
"styled-components": "5.0.1",
"type-graphql": "0.18.0-beta.16",
"typeorm": "0.2.24"
},
"devDependencies": {
"@apollo/react-testing": "3.1.3",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@graphql-codegen/add": "1.13.1",
"@graphql-codegen/cli": "1.13.1",
"@graphql-codegen/typescript": "1.13.1",
"@graphql-codegen/typescript-operations": "1.13.1",
"@graphql-codegen/typescript-react-apollo": "1.13.1",
"@graphql-codegen/typescript-resolvers": "1.13.1",
"@next/bundle-analyzer": "9.3.1",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "9.5.0",
"@types/jest": "24.9.1",
"@types/node": "13.9.2",
"@types/react": "16.9.23",
"@types/styled-components": "4.4.3",
"apollo": "2.25.0",
"apollo-server-testing": "2.11.0",
"babel-core": "6.26.3",
"babel-jest": "24.9.0",
"babel-plugin-module-resolver": "4.0.0",
"concurrently": "5.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"next-compose-plugins": "2.2.0",
"prettier": "^2.3.0",
"typescript": "3.8.3"
}
}