-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.8 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
{
"name": "talq-client-web",
"description": "A communication platform built with React and GraphQL",
"author": "Joe Alden <[email protected]> (joealden.com)",
"version": "0.1.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/joealden/talq-client-web",
"repository": {
"type": "git",
"url": "git+https://github.com/joealden/talq-client-web.git"
},
"scripts": {
"build": "next build && tsc --project tsconfig.server.json",
"clean": "./scripts/clean.sh",
"dev": "nodemon -r dotenv/config server/index.ts",
"start": "NODE_ENV=production node .next/production-server/index.js"
},
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link": "^1.2.6",
"apollo-link-error": "^1.1.5",
"apollo-link-http": "^1.5.9",
"apollo-link-ws": "^1.0.12",
"apollo-utilities": "^1.0.27",
"cookie-parser": "^1.4.3",
"cross-fetch": "^3.0.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"next": "^7.0.2",
"ramda": "^0.26.1",
"react": "^16.7.0",
"react-apollo": "^2.3.3",
"react-dom": "^16.7.0",
"styled-components": "^4.1.3",
"subscriptions-transport-ws": "^0.9.15",
"ws": "^6.1.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.0",
"@types/next": "^7.0.6",
"@types/ramda": "^0.25.46",
"@types/react": "^16.7.18",
"@types/styled-components": "^4.1.4",
"@types/ws": "^6.0.1",
"babel-plugin-graphql-tag": "^1.6.0",
"babel-plugin-styled-components": "^1.10.0",
"dotenv": "^6.2.0",
"nodemon": "^1.18.9",
"now": "^13.0.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"resolutions": {
"@types/react": "16.7.18"
}
}