-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.64 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
{
"name": "coronahilfe-finder.de",
"version": "0.1.0",
"description": "A page to locate local Corona help initiatives across Germany.",
"main": "index.js",
"repository": "https://github.com/roNn23/coronahilfe-finder.de.git",
"author": "Ronny Neefe <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"@directus/sdk-js": "^6.0.5",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"fast-sort": "^2.1.1",
"formik": "^2.1.4",
"gatsby": "^2.20.2",
"gatsby-image": "^2.3.0",
"gatsby-plugin-create-client-paths": "^2.2.1",
"gatsby-plugin-force-trailing-slashes": "^1.0.4",
"gatsby-plugin-google-analytics": "^2.2.1",
"gatsby-plugin-manifest": "^2.3.1",
"gatsby-plugin-offline": "^3.1.0",
"gatsby-plugin-react-helmet": "^3.2.0",
"gatsby-plugin-sass": "^2.2.0",
"gatsby-plugin-sharp": "^2.5.1",
"gatsby-source-filesystem": "^2.2.1",
"gatsby-transformer-sharp": "^2.4.1",
"geolib": "^3.2.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0-beta.17",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-icons": "^3.9.0",
"react-loader-spinner": "^3.1.5",
"react-loads": "^9.1.1",
"react-reveal": "^1.2.2",
"react-select": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^2.24.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"stylelint": "^13.2.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.16.0",
"typescript": "^3.8.3"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"lint": "yarn run lint:js && yarn run lint:scss",
"lint:js": "eslint \"**/*.{js,jsx}\" --config .eslintrc",
"lint:scss": "stylelint 'src/**/*.scss' --syntax=scss",
"lint:js:fix": "yarn run lint:js --fix",
"lint:scss:fix": "yarn run lint:scss --fix",
"prettier": "prettier --write 'src/**/*.{js,jsx,tsx,scss,md}'",
"beautify": "yarn run prettier && yarn run lint:scss:fix && yarn run lint:js:fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.{js,jsx,md}": [
"prettier --write",
"eslint --config .eslintrc --fix"
],
"*.scss": [
"prettier --write",
"stylelint --syntax=scss --fix"
]
}
}