-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "toolbox",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"build:data": "node scripts/airtable.js && cp src/data/data.json static/data.json",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"start": "VITE_PREVIEW=true svelte-kit build && svelte-kit preview",
"prepare": "svelte-kit sync",
"test": "playwright test",
"test:module": "vitest",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@playwright/test": "^1.21.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"airtable": "^0.11.3",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.44.0",
"vitest": "^0.13.1"
},
"type": "module",
"volta": {
"node": "16.14.2"
},
"dependencies": {
"@fontsource/raleway": "^4.5.8",
"@fontsource/source-sans-pro": "^4.5.9",
"d3": "^7.4.4",
"d3-sankey": "^0.12.3",
"groq-js": "^0.3.0-beta.2",
"lodash-es": "^4.17.21",
"mdast-util-toc": "^6.1.0",
"mdsvex": "^0.10.5",
"modern-normalize": "^1.1.0",
"rehype-slug": "^5.0.1",
"unist-util-visit-parents": "^5.1.0"
}
}