-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "graphly",
"version": "0.0.1",
"description": "GraphQL schema generation based on TypeScript reflection.",
"main": "index.js",
"repository": "https://github.com/graphly/graphly",
"author": "izatop@gmail.com",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf -g 'packages/*/{dist/*,*.tsbuildinfo,yarn-error.log}'",
"lint": "eslint --ignore-pattern 'packages/test/*' 'packages/*/src/**/*.ts'",
"build": "tsc -b packages",
"postbuild": "lerna run postbuild",
"watch": "tsc -b packages -w",
"test": "jest --config jest.json",
"test:watch": "jest --watch --config jest.json",
"test:compose": "lerna run compose --scope=@graphly/test",
"test:compose:watch": "lerna run compose:watch --scope=@graphly/test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "4.9.5"
},
"packageManager": "yarn@3.5.1"
}