-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathpackage.json
34 lines (34 loc) · 980 Bytes
/
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
{
"name": "@examples/graphql-server-typescript",
"private": true,
"version": "0.32.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development yarn run -T nodemon -w src -x ts-node src/index.ts",
"build": "yarn run -T tsc",
"test": "yarn run build"
},
"dependencies": {
"@accounts/module-core": "^0.34.0",
"@accounts/module-mongo": "^0.34.0",
"@accounts/module-password": "^0.34.0",
"@accounts/password": "^0.32.2",
"@accounts/server": "^0.33.1",
"@envelop/core": "5.0.0",
"@envelop/graphql-modules": "6.0.0",
"@graphql-tools/merge": "9.0.3",
"@graphql-tools/schema": "10.0.3",
"express": "^4.18.3",
"graphql": "16.8.1",
"graphql-modules": "3.0.0-alpha-20231106133212-0b04b56e",
"graphql-tag": "2.12.6",
"graphql-yoga": "5.1.1",
"helmet": "^7.1.0",
"mongoose": "8.2.1",
"tslib": "2.6.2"
},
"devDependencies": {
"@types/express": "^4.17.21"
}
}