-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 961 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
35
36
{
"name": "mock-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node mock-server/src/index.ts",
"prepare": "husky install",
"generate": "ts-node mock-server/src/generateIntrospection.ts"
},
"dependencies": {
"@apollo/server": "4.7.5",
"@graphql-tools/schema": "9.0.19",
"body-parser": "1.20.2",
"cors": "2.8.5",
"express": "4.18.2",
"graphql": "16.7.1",
"graphql-tag": "2.12.6"
},
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@graphql-tools/mock": "8.7.20",
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"date-fns": "2.30.0",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}