-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.86 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
{
"name": "graphql-demeter-repo",
"version": "0.0.1",
"private": true,
"license": "MIT",
"description": "Generate Mock Server from GraphQL Schema",
"homepage": "https://github.com/graphql-editor/graphql-demeter",
"readme": "https://github.com/graphql-editor/graphql-demeter#readme",
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/graphql-demeter.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/graphql-demeter.git"
},
"scripts": {
"clean-packages": "rimraf packages/**/lib && rimraf packages/**/tsconfig.tsbuildinfo",
"build": "npm run clean-packages && npm run build --ws --if-present",
"lint": "tspc && eslint \"./packages/**/src/**/*.{ts,js}\" --quiet --fix",
"dev": "npm run build && concurrently \"npm run start -w graphql-demeter-core\" \"npm run start -w graphql-demeter\" \"npm run start -w olympus\" ",
"example": "npm run start -w olympus",
"interfaces": "npm run start -w interfaces",
"run-example": "npm run build && npm run example",
"run-interfaces": "npm run build && npm run interfaces",
"test": "jest"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.1",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.6"
},
"workspaces": [
"./packages/graphql-demeter-core",
"./packages/graphql-demeter",
"./examples/olympus",
"./examples/interfaces"
]
}