-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "apollo-server-graphql-practice",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "cross-env BROWSER=none concurrently \"npm run server\" \"npm run client\"",
"server": "ts-node-dev -r dotenv/config src/index.ts",
"client": "npm start --prefix client",
"build": "tsc -p src",
"build:client": "npm run build --prefix client",
"preserve": "npm run build && npm run build:client",
"serve": "node -r dotenv/config dist/index.js"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/mongoose": "^5.7.36",
"dotenv": "^8.2.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@typegoose/typegoose": "^7.3.1",
"apollo-server-express": "^2.16.1",
"class-validator": "^0.12.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"graphql": "^15.5.0",
"juji-client": "^0.3.3",
"mongoose": "^5.9.28",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13",
"styled-components": "^5.3.0",
"type-graphql": "^1.0.0-rc.3"
},
"license": "ISC"
}