forked from janosh/elementari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
62
63
64
65
66
67
{
"name": "periodic-table",
"description": "Interactive periodic table of elements",
"author": "Janosh Riebesell <[email protected]>",
"homepage": "https://ptable-elements.netlify.app",
"repository": "https://github.com/janosh/periodic-table",
"license": "MIT",
"version": "0.1.0",
"type": "module",
"svelte": "PeriodicTable.svelte",
"bugs": "https://github.com/janosh/periodic-table/issues",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"serve": "pnpm build && pnpm preview",
"check": "svelte-check",
"test": "vitest --run tests/unit/*.ts && playwright test tests/*.ts"
},
"devDependencies": {
"@iconify/svelte": "^3.0.0",
"@playwright/test": "^1.26.1",
"@rollup/plugin-yaml": "^4.0.1",
"@sveltejs/adapter-static": "^1.0.0-next.44",
"@sveltejs/kit": "^1.0.0-next.511",
"@types/d3-array": "^3.0.3",
"@types/d3-interpolate-path": "^2.0.0",
"@types/d3-scale": "^4.0.2",
"@types/d3-shape": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"d3-array": "^3.2.0",
"d3-interpolate-path": "^2.3.0",
"d3-scale": "^4.0.2",
"d3-shape": "^3.1.0",
"eslint": "^8.24.0",
"eslint-plugin-svelte3": "^4.0.0",
"hastscript": "^7.0.2",
"js-yaml": "^4.1.0",
"jsdom": "^20.0.1",
"mdsvex": "^0.10.6",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"svelte": "^3.50.1",
"svelte-check": "^2.9.1",
"svelte-github-corner": "^0.1.0",
"svelte-multiselect": "^7.0.0",
"svelte-preprocess": "^4.10.7",
"svelte2tsx": "^0.5.19",
"typescript": "^4.8.4",
"vite": "^3.1.6",
"vitest": "^0.23.4"
},
"keywords": [
"svelte",
"periodic table",
"chemistry",
"data viz",
"plotting",
"component"
],
"publishConfig": {
"access": "public"
}
}