-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"private": true,
"name": "it2566-armadillo",
"packageManager": "yarn@1.22.19",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"deploy:web": "NODE_ENV=production firebase deploy --only hosting",
"deploy:storage": "firebase deploy --only storage",
"deploy:firestore": "firebase deploy --only firestore",
"deploy:functions": "NODE_ENV=production firebase deploy --only functions",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@aws-amplify/cli": "^12.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"firebase-tools": "^13.0.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.8",
"turbo": "latest",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"yarnhook": "^0.6.1"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"functions/*"
],
"nohoist": [
"**/firebase-admin",
"**/firebase-admin/**",
"**/firebase-functions",
"**/firebase-functions/**",
"**/@armadillo/",
"**/@armadillo/**"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}