-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "e-initiative-template",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:astro": "astro dev",
"dev:firebase": "firebase emulators:start --import ./mocks/firebase/ --project default",
"build": "astro build",
"preview": "astro preview",
"emulator:save": "firebase emulators:export ./mocks/firebase/",
"download:local": "NODE_ENV=development node --env-file=.env.development --import tsx ./src/scripts/downloader.ts",
"download:prod": "node --env-file=.env.production --import tsx ./src/scripts/downloader.ts",
"render": "node --import tsx ./src/scripts/renderer.ts",
"render:watch": "node --watch --import tsx ./src/scripts/renderer.ts",
"format": "prettier --write --ignore-unknown .",
"prepare": "husky"
},
"lint-staged": {
"*.md": "doctoc --github",
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@felte/reporter-svelte": "^1.1.11",
"@pdf-lib/fontkit": "^1.1.1",
"@sinclair/typebox": "^0.32.31",
"d3-dsv": "^3.0.1",
"dayjs": "^1.11.11",
"doctoc": "^2.2.1",
"felte": "^1.2.14",
"firebase": "^10.12.2",
"pdf-lib": "^1.17.1",
"scrollama": "^3.2.0",
"sheethuahua": "^2.0.0",
"signature_pad": "^5.0.1"
},
"devDependencies": {
"@astrojs/check": "^0.6.0",
"@astrojs/svelte": "^5.4.0",
"@astrojs/tailwind": "^5.1.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/d3-dsv": "^3.0.7",
"arquero": "^5.4.0",
"astro": "^4.8.3",
"concurrently": "^8.2.2",
"daisyui": "^3.9.4",
"firebase-tools": "^13.12.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"svelte": "^4.2.17",
"tailwindcss": "^3.4.3",
"tsx": "^4.15.1",
"typescript": "^5.4.5"
}
}