-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@betamanga/platform",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"packageManager": "[email protected]",
"private": true,
"author": {
"name": "Kilian Panot",
"email": "[email protected]",
"url": "https://github.com/kpanot"
},
"scripts": {
"docker:dev:build": "docker-compose -f ./docker-compose.dev.yml build",
"docker:dev": "docker-compose -f ./docker-compose.dev.yml up",
"start:backend": "yarn docker:dev",
"start:sdk": "yarn workspace @betamanga/sdk start:local",
"start:web": "yarn workspace @betamanga/web start",
"start": "yarn docker:dev:build && yarn run-p 'start:*'",
"postinstall": "husky install & yarn dlx @yarnpkg/sdks vscode"
},
"lint-staged": {
"*.{t,j}s": [
"eslint --quiet --fix"
]
},
"devDependencies": {
"@commitlint/cli": "~17.7.1",
"@commitlint/config-conventional": "~17.7.0",
"@typescript-eslint/eslint-plugin": "~6.5.0",
"@typescript-eslint/parser": "~6.5.0",
"eslint": "~8.48.0",
"eslint-config-prettier": "~9.0.0",
"eslint-config-standard-with-typescript": "~39.0.0",
"eslint-plugin-import": "~2.28.1",
"eslint-plugin-n": "~16.0.2",
"eslint-plugin-prettier": "~5.0.0",
"eslint-plugin-promise": "~6.1.1",
"husky": "~8.0.3",
"lint-staged": "~14.0.1",
"npm-run-all": "~4.1.5",
"prettier": "~3.0.3",
"typescript": "~5.2.2"
},
"workspaces": [
"packages/*"
],
"engineStrict": true,
"engines": {
"node": ">=16.0.0",
"npm": "please-use-yarn",
"yarn": "~3.2.4"
}
}