-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 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
{
"version": "1.4.0-rc.4",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"ts:build": "tsc --build",
"ts:watch": "tsc --build --watch --pretty",
"ts:clean": "tsc --build --clean",
"build": "tsc --build && yarn workspaces foreach run build",
"test": "yarn workspaces foreach run test",
"test-e2e": "yarn workspaces foreach run test-e2e",
"eslint:lint": "eslint \"**/*.{ts,tsx}\" ",
"eslint:fix": "eslint --fix \"**/*.{ts,tsx}\" ",
"tag-version": "./scripts/npm/tag-version.sh $@",
"contember": "docker-compose run --rm cli-sandbox"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"esbuild": "^0.18.20",
"eslint": "^8.53.0",
"eslint-plugin-promise": "^6.1.1",
"fast-glob": "^3.3.2",
"tsx": "^4.1.2",
"typescript": "^5.2.2",
"vite": "^4.5.1",
"vitest": "^0.34.6"
},
"resolutions": {
"graphql": "16.8.1",
"vite": "4.5.1",
"@types/node": "20.9.0"
},
"workspaces": [
"sandbox",
"packages/*"
]
}