forked from socialincome-san/public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.93 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
{
"name": "@socialincome/monorepo",
"version": "1.0.0",
"private": true,
"workspaces": [
"admin",
"functions",
"shared",
"ui",
"website"
],
"scripts": {
"admin:build": "npm --workspace=@socialincome/admin run build",
"admin:serve": "npm run functions:build && npm --workspace=@socialincome/admin run serve",
"admin:test": "npm --workspace=@socialincome/admin run test:emulator",
"admin:test:playwright": "npm --workspace=@socialincome/admin run test:playwright:emulator",
"admin:test:playwright:update": "npm --workspace=@socialincome/admin run test:playwright:emulator:update",
"firebase:export": "firebase emulators:export --project social-income-staging --force ./seed",
"firebase:serve": "firebase emulators:start --project social-income-staging --config firebase.json --import ./seed",
"format-code": "prettier --write .",
"functions:build": "npm --workspace=@socialincome/functions run build",
"functions:deploy": "npm --workspace=@socialincome/functions run deploy",
"functions:serve": "npm --workspace=@socialincome/functions run serve",
"functions:test": "npm --workspace=@socialincome/functions run test",
"functions:test:playwright": "npm --workspace=@socialincome/functions run test:playwright",
"functions:test:playwright:update": "npm --workspace=@socialincome/functions run test:playwright:update",
"shared:test": "npm --workspace=@socialincome/shared run test",
"ui:build": "npm --workspace=@socialincome/ui run build",
"ui:serve": "npm --workspace=@socialincome/ui run serve",
"website:build": "npm --workspace=@socialincome/website run build",
"website:build:emulator": "npm --workspace=@socialincome/website run build:emulator",
"website:lint": "npm --workspace=@socialincome/website run lint",
"website:serve": "npm --workspace=@socialincome/website run serve",
"website:serve:emulator": "npm --workspace=@socialincome/website run serve:emulator",
"website:start": "npm --workspace=@socialincome/website run start",
"website:start:emulator": "npm --workspace=@socialincome/website run start:emulator",
"website:test": "npm --workspace=@socialincome/website run test",
"website:test:emulator": "npm --workspace=@socialincome/website run test:emulator",
"website:test:e2e": "npm --workspace=@socialincome/website run test:e2e",
"website:test:e2e:emulator": "npm --workspace=@socialincome/website run test:e2e:emulator",
"website:test:e2e:update": "npm --workspace=@socialincome/website run test:e2e:update",
"website:test:e2e:update:emulator": "npm --workspace=@socialincome/website run test:e2e:update:emulator",
"website:extract-translations": "npm --workspace=@socialincome/website run extract-translations",
"website:check-translations": "npm --workspace=@socialincome/website run check-translations"
},
"devDependencies": {
"firebase-tools": "13.0.2",
"prettier": "3.1.0",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.7",
"typescript": "^5.3.2"
}
}