-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "folk-webapp",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": "18",
"npm": "please-use-yarn",
"yarn": "3.2.0"
},
"scripts": {
"web:dev": "yarn workspace web start",
"web:dev:local": "yarn workspace web dev:local",
"web:build": "yarn workspace web build",
"web:deploy:dev": "yarn workspace web deploy:dev",
"web:format": "yarn workspace web format",
"web:format-check": "yarn workspace web format:check",
"web:lint": "yarn workspace web lint",
"web:lint-fix": "yarn workspace web lint:fix",
"server:dev:local": "yarn workspace server dev:local",
"server:deploy:dev": "yarn sls deploy --stage dev",
"server:format": "yarn workspace server format",
"server:format-check": "yarn workspace server format:check",
"server:lint": "yarn workspace server lint",
"server:lint-fix": "yarn workspace server lint:fix",
"postinstall": "husky install"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.714.0",
"@aws-sdk/credential-providers": "^3.714.0",
"@aws-sdk/s3-request-presigner": "^3.714.0",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"serverless": "^3.40.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"resolutions": {
"micromatch": "4.0.8",
"superagent": "10.1.1"
}
}