-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "qminder",
"private": true,
"author": "Qminder <[email protected]> (https://www.qminder.com)",
"license": "Apache-2.0",
"engines": {
"node": "^22.0.0"
},
"scripts": {
"test": "jest",
"test-node": "jest --env=node",
"lint-eslint": "yarn workspace qminder-api build && eslint --ext ts .",
"lint-prettier": "prettier --check .",
"lint": "yarn lint-eslint && yarn lint-prettier",
"format": "prettier --write .",
"docs": "sh ./scripts/build-documentation.sh",
"prepack": "yarn run build",
"build": "yarn workspace qminder-api build",
"watch": "yarn workspace qminder-api watch",
"example-graphql-events": "yarn workspace qminder-api build && yarn workspace qminder-graphql-events-example start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"prettier": "2.8.8",
"typescript": "5.7.3"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"mock-socket": "9.3.1"
},
"packageManager": "[email protected]"
}