-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
58
59
60
61
{
"name": "wya",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "turbo run build:dev",
"build": "turbo run build",
"deploy:dev": "turbo run deploy:dev",
"deploy": "turbo run deploy",
"dev": "turbo run dev --no-cache --parallel --continue",
"test": "turbo run test",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\" !**/dist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSUN-COMP-490-Team-KBBQ/wya.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CSUN-COMP-490-Team-KBBQ/wya/issues"
},
"homepage": "https://github.com/CSUN-COMP-490-Team-KBBQ/wya#readme",
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"tsup": "^5.11.13",
"turbo": "^1.2.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"apps/**/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"packages/**/src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "npm@8.3.0",
"dependencies": {
"assert": "^2.0.0",
"debug": "^4.3.3",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.18.1",
"tslib": "^2.3.1"
}
}