-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.13 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
80
81
82
83
84
85
86
87
88
{
"name": "informa-covid19",
"version": "0.0.9",
"private": true,
"scripts": {
"build": "sapper build",
"dev": "rm -rf static/* && sapper dev",
"export": "sapper export",
"lint": "eslint . --ext .js,.svelte --fix",
"start": "node __sapper__/build",
"serve": "serve ___sapper__/export"
},
"license": "CC-BY 4.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/opendatasicilia/informa-covid19.git"
},
"bugs": {
"url": "https://github.com/opendatasicilia/informa-covid19/issues"
},
"homepage": "https://github.com/opendatasicilia/informa-covid19#readme",
"dependencies": {
"axios": "^0.21.4",
"compression": "^1.7.1",
"polka": "next",
"sirv": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autoprefixer": "^10.2.5",
"copy-webpack-plugin": "^6.4.1",
"cssnano": "^5.0.2",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-svelte3": "^3.2.0",
"file-loader": "^6.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.13",
"postcss-nesting": "^7.0.1",
"prettier": "^2.2.1",
"sapper": "^0.27.0",
"svelte": "^3.0.0",
"svelte-loader": "^2.9.0",
"svelte-preprocess": "^4.7.3",
"tailwindcss": "^2.1.2",
"webpack": "^4.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,svelte}": [
"eslint --fix"
],
"src/**/*.{js,jsx,ts,tsx,json,css,md,mdx}": [
"prettier --write"
]
},
"contributors": [
{
"name": "Dennis Angemi"
},
{
"name": "Andrea Borruso"
},
{
"name": "Angelo Gulina",
"email": "write@angelogulina.dev",
"url": "https://angelogulina.dev"
},
{
"name": "Giovanni Pirrotta"
},
{
"name": "Gabriele Scalici",
"email": "gaba@totel.it"
}
]
}