-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
79 lines (79 loc) · 2.43 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
73
74
75
76
77
78
79
{
"name": "open-books",
"description": "French cities budgets explorer",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"lint-staged": "lint-staged --allow-empty",
"format": "prettier --write",
"release": "release-it",
"storybook": "start-storybook -s ./static -p 6006",
"build-storybook": "build-storybook -s ./static",
"test": "uvu -r module-alias/register -r tsm src test"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-svelte-csf": "^2.0.3",
"@storybook/svelte": "^6.4.22",
"@sveltejs/adapter-vercel": "^1.0.0-next.58",
"@sveltejs/kit": "^1.0.0-next.350",
"@types/d3-format": "^3.0.1",
"@types/d3-shape": "^3.0.2",
"@types/marked": "^4.0.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^10.3.6",
"babel-loader": "^8.2.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"module-alias": "^2.2.2",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.6.0",
"release-it": "^14.11.6",
"sass": "^1.42.1",
"storybook-builder-vite": "^0.1.2",
"svelte": "^3.48.0",
"svelte-check": "^2.2.6",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.9.4",
"tslib": "^2.3.1",
"tsm": "^2.1.2",
"typescript": "^4.6.3",
"uvu": "^0.5.2",
"vite-plugin-markdown": "^2.0.2"
},
"type": "module",
"dependencies": {
"@types/randomcolor": "^0.5.6",
"@xmldom/xmldom": "^0.8.2",
"d3-format": "^3.0.1",
"d3-pie": "^1.1.0",
"d3-shape": "^3.0.1",
"json-2-csv": "^3.14.4",
"marked": "^4.0.10",
"randomcolor": "^0.6.2"
},
"_moduleAliases": {
"@api": "src/api",
"@utils": "src/utils",
"@stores": "src/stores",
"@interfaces": "src/interfaces",
"@docs": "src/docs"
}
}