-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.04 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
{
"name": "my-next-public-holiday",
"version": "0.0.0",
"description": "Find the date of your next public holiday based on your location.",
"private": true,
"homepage": "https://github.com/remnantkevin/my-next-public-holiday#readme",
"repository": {
"type": "git",
"url": "https://github.com/remnantkevin/my-next-public-holiday.git"
},
"keywords": [
"public holiday",
"holiday"
],
"type": "module",
"author": "Kevin Elliott",
"license": "MIT",
"scripts": {
"setup": "npm install -g pnpm && pnpm run setup:local",
"setup:local": "pnpm install:data && pnpm build:data && pnpm install:web",
"install:data": "pnpm install --filter=@my-next-public-holiday/public-holiday-data",
"install:web": "pnpm install --filter=@my-next-public-holiday/web",
"build:data": "pnpm build --filter=@my-next-public-holiday/public-holiday-data",
"build:web": "pnpm build --filter=@my-next-public-holiday/web"
},
"dependencies": {
"@types/node": "14.17.6",
"date-fns": "^2.27.0",
"typescript": "^4.4.4"
}
}