-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (45 loc) · 1.4 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
{
"name": "ts-apollo-app",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"generate": "gql-gen --config codegen.yml",
"dev": "nodemon --watch ./src --ext ts,js,json,graphql --exec 'npm run generate && exec ts-node ./src/index.ts'",
"dev:nogql": "nodemon --watch ./src --ext ts,js,json --exec 'ts-node ./src/index.ts'",
"build": "npm run generate && tsc",
"start": "npm run build && node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesark/ts-apollo-app.git"
},
"author": "Savinay Kumar",
"license": "ISC",
"bugs": {
"url": "https://github.com/codesark/ts-apollo-app/issues"
},
"homepage": "https://github.com/codesark/ts-apollo-app#readme",
"devDependencies": {
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-resolvers": "^3.2.1",
"@types/cors": "^2.8.13",
"graphql-codegen-typescript-common": "0.18.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@apollo/server": "^4.7.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.0"
}
}