forked from andrelind/launch-bay-next-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3 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
{
"name": "launch-bay-next-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc && tsc --project tsconfig.server.json && copyfiles ./schema/**.graphql ./schema/**/**.graphql ./.next",
"start": "node .next/server -p $PORT",
"postinstall": "node scripts/post-install.js",
"test": "tsc --noemit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@material-ui/core": "^4.9.0",
"@react-navigation/core": "^5.0.0-alpha.20",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-css": "^1.0.1",
"apisauce": "^1.1.1",
"apollo-server-express": "^2.9.16",
"babel-plugin-module-resolver": "^4.0.0",
"bluebird": "^3.7.2",
"color": "^3.1.2",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"graphql": "^14.6.0",
"graphql-tools": "^4.0.6",
"graphql-type-json": "^0.3.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^8.0.6",
"lodash.merge": "^4.6.2",
"minimist": "^1.2.0",
"mongoose": "^5.8.10",
"next": "^9.2.1",
"next-fonts": "^1.0.3",
"next-progressbar": "^1.0.0",
"next-redux-wrapper": "^4.0.1",
"nextjs-progressbar": "^0.0.4",
"nookies": "^2.0.8",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"qrcode.react": "^1.0.0",
"react": "^16.12.0",
"react-art": "^16.12.0",
"react-dom": "^16.12.0",
"react-feather": "^2.0.3",
"react-native-web": "^0.12.0",
"react-primitives": "^0.8.0",
"react-redux": "^7.1.3",
"react-select": "^3.0.8",
"react-sidebar": "^3.0.2",
"react-switch": "^5.0.1",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"styled-components": "^5.0.0",
"use-dark-mode": "^2.3.1",
"use-media": "^1.4.0"
},
"devDependencies": {
"@types/cookie-session": "^2.0.37",
"@types/dotenv": "^8.2.0",
"@types/passport": "^1.0.2",
"@types/passport-facebook": "^2.1.9",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-select": "^3.0.10",
"@types/react-sidebar": "^3.0.0",
"@types/styled-components": "^4.4.2",
"@types/uuid": "^3.4.7",
"babel-eslint": "^10.0.3",
"babel-plugin-react-native-web": "^0.12.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"copyfiles": "^2.2.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}