-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
{
"name": "glubhub",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "sirv public --no-clear",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"gql-gen": "graphql-codegen",
"format": "prettier --write --plugin-search-dir=. ."
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"rules": {
"semi": [
"error",
"always"
],
"quotes": [
"error",
"single"
],
"indent": [
"error",
2
]
}
},
"devDependencies": {
"@creativebulma/bulma-divider": "^1.1.0",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@graphql-codegen/cli": "^2.9.1",
"@graphql-codegen/typed-document-node": "^2.2.8",
"@graphql-codegen/typescript-graphql-request": "^4.5.2",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^1.0.1",
"@tsconfig/svelte": "^2.0.0",
"@types/d3": "^7.4.0",
"autoprefixer": "^10.4.7",
"bulma": "^0.9.4",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"rollup-plugin-visualizer": "^5.7.1",
"sass": "^1.53.0",
"svelte": "^3.0.0",
"svelte-check": "^2.0.0",
"svelte-preprocess": "^4.10.7",
"tone": "^14.7.77",
"tslib": "^2.0.0",
"typescript": "^4.0.0",
"typescript-eslint-language-service": "^5.0.0",
"vite": "^3.0.2"
},
"dependencies": {
"@tinymce/tinymce-svelte": "^1.0.0",
"d3": "^7.6.1",
"dayjs": "^1.11.1",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"sirv-cli": "^2.0.0",
"ts-md5": "^1.2.11"
}
}