-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 2.28 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
55
56
57
{
"name": "desk-compass",
"version": "1.5.9",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"build": "run-s -l build:frontend build:api",
"build:api": "yarn workspace api build",
"build:frontend": "yarn workspace frontend build",
"lint": "run-p -l lint:api lint:frontend",
"lint:api": "yarn workspace api run lint",
"lint:frontend": "yarn workspace frontend run lint",
"lint:frontend-check": "yarn workspace frontend run check",
"start": "run-p -l --race start:api start:frontend",
"start:api": "yarn workspace api run start:dev",
"start:frontend": "yarn workspace frontend run start",
"test": "run-p -l test:api test:frontend",
"test:watch": "run-p -l test:api:watch test:frontend:watch",
"test:api": "yarn workspace api run test",
"test:frontend": "yarn workspace frontend run test",
"test:api:watch": "yarn workspace api run test:watch",
"test:frontend:watch": "yarn workspace frontend run test:watch",
"test:coverage": "run-p -l --race test:coverage:api test:coverage:frontend",
"test:coverage:api": "yarn workspace api run test:coverage",
"test:coverage:frontend": "yarn workspace frontend run test:coverage",
"e2e": "env-cmd --use-shell -f ./environments/.env.e2e run-p -l --race start:api start:frontend e2e:start",
"e2e:start": "wait-on -c waiton.cjs && yarn e2e:playwright",
"e2e:playwright": "yarn workspace e2e run playwright test",
"e2e:watch": "env-cmd --use-shell -f ./environments/.env.e2e run-p -l --race start:api start:frontend e2e:watch:start",
"e2e:watch:start": "wait-on -c waiton.cjs && yarn e2e:playwright --ui"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"@vitest/coverage-v8": "1.6.0",
"env-cmd": "10.1.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "8.0.3",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"semantic-release": "22.0.12",
"typescript": "5.3.3",
"v8": "0.1.0",
"vite": "5.0.13",
"vitest": "1.6.0",
"wait-on": "7.2.0"
},
"workspaces": [
"workspaces/*"
]
}