This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
forked from mhkeller/layercake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.26 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
68
69
70
71
72
{
"name": "layercake",
"version": "7.1.0",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"update_template": "sh ./src/scripts/update_template.sh",
"prebuild": "npm run update_template",
"deploy": "npm run build && git add -A && git commit -am 'auto-deploy' && git push origin main",
"test": "mocha --require esm test/*.js"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@rollup/plugin-dsv": "^2.0.2",
"@sveltejs/adapter-static": "1.0.0-next.22",
"@sveltejs/kit": "1.0.0-next.200",
"@types/cookie": "^0.4.1",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"cookie": "^0.4.1",
"d3-array": "^3.1.1",
"d3-collection": "^1.0.7",
"d3-delaunay": "^6.0.2",
"d3-force": "^3.0.0",
"d3-format": "^3.1.0",
"d3-geo": "^3.0.1",
"d3-hierarchy": "^3.1.1",
"d3-quadtree": "^3.0.1",
"d3-sankey": "^0.12.3",
"d3-shape": "^3.0.1",
"d3-time": "^3.0.0",
"d3-time-format": "^4.1.0",
"degit": "^2.8.4",
"do-not-zip": "^1.0.0",
"doctrine": "^3.0.0",
"emoji-regex": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"esm": "^3.2.25",
"golden-fleece": "^1.0.9",
"highlight.js": "^11.3.1",
"html-minifier": "^4.0.0",
"indian-ocean": "^4.0.2",
"markdown-it": "^12.3.0",
"marked": "^4.0.7",
"mocha": "^9.2.1",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"regl": "^2.1.0",
"svelte": "^3.46.2",
"svelte-check": "^2.2.11",
"svelte-preprocess": "^4.10.1",
"svelte2tsx": "^0.4.11",
"topojson-client": "^3.1.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"underscore": "^1.13.1",
"yootils": "^0.3.1"
},
"dependencies": {
"d3-scale": "^4.0.2"
}
}