-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "spacex-launch-app",
"version": "1.0.0",
"description": "An app for learning GraphQL and Apollo using the SpaceX API for data",
"main": "server.js",
"scripts": {
"client": "npm start --prefix client",
"start": "node server.js",
"server": "nodemon server.ts",
"start-dev": "concurrently \"npm run server\" \"npm run client \"",
"tsc": "tsc",
"postinstall": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CianHub/spacex-launch-app.git"
},
"keywords": [
"graphql",
"apollo",
"spacex",
"react",
"nodejs",
"expressjs"
],
"author": "Cian O'Gralaigh",
"license": "ISC",
"bugs": {
"url": "https://github.com/CianHub/spacex-launch-app/issues"
},
"homepage": "https://github.com/CianHub/spacex-launch-app#readme",
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/classnames": "^2.2.10",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "github:types/express",
"@types/graphql": "^14.5.0",
"@types/jest": "^24.9.1",
"@types/node": "^14.0.13",
"@types/react": "^16.9.37",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"apollo-boost": "^0.4.9",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"concurrently": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.1.0",
"moment": "^2.26.0",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-moment": "^0.9.7",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"ts-node": "^8.10.2",
"type-graphql": "^1.0.0-rc.2",
"typescript": "^3.7.5"
}
}