-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
64 lines (64 loc) · 2.36 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
58
59
60
61
62
63
64
{
"name": "iot-application",
"private": true,
"version": "0.0.0",
"workspaces": [
"apps/*",
"cdk",
"packages/*"
],
"config": {
"docs": "http://localhost:3000/docs-json",
"genpath": "apps/client/src/services/generated",
"genconfig": "--exportSchemas true --useUnionTypes"
},
"scripts": {
"build": "yarn clean && turbo run build",
"clean": "npx turbo run clean && rimraf .turbo && rimraf --glob *.tsbuildinfo",
"clean:full": "npx turbo run clean:full && rimraf .turbo && rimraf --glob *.tsbuildinfo && rimraf node_modules",
"dev": "turbo run dev",
"deploy": "yarn install && yarn clean && yarn workspace cdk bootstrap && node deployCdk.js",
"gen:types": "openapi -i ${npm_package_config_docs} -o ${npm_package_config_genpath} ${npm_package_config_genconfig} && yarn format:gen:types",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:gen:types": "prettier --write \"${npm_package_config_genpath}/**/*.ts\"",
"install:clean": "yarn clean && yarn install",
"install:reset": "yarn clean && rm -rf yarn.lock && yarn install",
"lint": "turbo run lint && tsc --noEmit && TIMING=1 eslint \"tests/**/*.ts\" --max-warnings 0",
"lint:commit": "turbo run lint:commit --filter=[HEAD~1]",
"lint:fix": "turbo run lint:fix && eslint \"tests/**/*.ts\" --fix",
"start:client": "yarn workspace client dev",
"start:core": "yarn workspace core dev",
"test": "turbo run test",
"test:commit": "turbo run test:commit --filter=[HEAD~1]",
"test:e2e": "playwright test",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@axe-core/playwright": "^4.8.2",
"@playwright/test": "1.41.2",
"@types/jest": "29.5.2",
"@types/node": "20.11.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-custom": "*",
"eslint-plugin-playwright": "^0.18.0",
"jest": "29.5.0",
"jest-watch-typeahead": "^2.2.2",
"node-notifier": "^10.0.1",
"openapi-typescript": "^6.7.2",
"openapi-typescript-codegen": "^0.26.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.0.0",
"turbo": "latest",
"type-fest": "^4.8.2",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.14.0",
"yarn": "1.22.19"
}
}