-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "@macadam/root",
"version": "1.0.0",
"repository": "https://github.com/joekrill/macadam.git",
"author": "Joe Krill <[email protected]>",
"license": "UNLICENSED",
"private": true,
"workspaces": [
"packages/api-client",
"packages/api-server",
"packages/client-web"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@yarnpkg/pnpify": "^4.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript": "^5.3.3"
},
"scripts": {
"postinstall": "husky install",
"format": "yarn prettier --write .",
"format:check": "yarn prettier --check .",
"lint": "yarn eslint . --fix",
"lint:check": "yarn eslint .",
"ci": "yarn run format:check && yarn run lint:check && yarn run typecheck && yarn run test",
"typecheck": "yarn workspaces foreach -A run typecheck",
"test": "yarn workspaces foreach -A run test",
"yarn:upgrade": "yarn set version latest && yarn dlx @yarnpkg/sdks",
"build-image:client-web": "docker build -f ./packages/client-web/Dockerfile .",
"build-image:api-server": "docker build -f ./packages/api-server/Dockerfile .",
"storybook": "yarn workspace @macadam/client-web run storybook"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"packageManager": "[email protected]",
"resolutions": {
"sqlite3": "5.1.4"
}
}