-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "space-x-launches",
"version": "1.0.0",
"description": "SpaceX Launches with Typescript, React and Apollo GraphQL",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"start:dev": "tsc -w & concurrently \"npm run watch:node\" \"npm run client\"",
"heroku-postbuild": "tsc & cd client && npm install && npm run build",
"watch:ts": "tsc -w",
"watch:node": "nodemon dist/server.js",
"deploy": "git push heroku main",
"format": "prettier --write src/**/*.ts",
"lint": "tsc --noEmit && eslint --fix src/**/*.ts ",
"client": "npm run start --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papasavvas/space-x-launches.git"
},
"keywords": [
"typescript",
"react",
"apollo",
"graphql"
],
"author": "Alexandros Papasavva",
"license": "MIT",
"bugs": {
"url": "https://github.com/papasavvas/space-x-launches/issues"
},
"homepage": "https://github.com/papasavvas/space-x-launches#readme",
"dependencies": {
"@apollo/client": "^3.2.5",
"axios": "^0.21.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"concurrently": "^5.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"engines": {
"node": "12.16.3"
}
}