-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.16 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
{
"name": "harika",
"version": "0.1.0",
"author": "quolpr",
"private": true,
"engines": {},
"scripts": {
"web-app": "yarn workspace @harika/web-app",
"api-app": "yarn workspace @harika/harika-api",
"start:api:prod": "yarn workspace @harika/harika-api start-prod",
"start:api": "yarn workspace @harika/harika-api start",
"start:web": "yarn workspace @harika/web-app start",
"test:web-core": "yarn workspace @harika/web-core test",
"test:web-app": "yarn workspace @harika/web-app test",
"test:api-app": "yarn workspace @harika/harika-api test",
"lint:web-core": "yarn workspace @harika/web-core lint",
"lint:web-app": "yarn workspace @harika/web-app lint",
"lint:api-app": "yarn workspace @harika/harika-api lint",
"postinstall": "patch-package"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@sentry/cli": "^1.74.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint-plugin-promise": "^6.0.0"
},
"resolutions": {
"react-refresh": "0.10.0"
},
"dependencies": {
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0"
}
}