This repository has been archived by the owner on Jun 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 3.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
{
"name": "photoblog",
"version": "0.1.0",
"description": "Gatsby-powered photoblog",
"private": true,
"author": "Emanuel Kluge (https://www.emanuel-kluge.de/)",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-brands-svg-icons": "5.15.3",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"classnames": "2.3.1",
"emoji-regex": "9.2.2",
"fast-exif": "1.0.1",
"fast-glob": "3.2.5",
"gatsby": "2.32.12",
"gatsby-image": "2.11.0",
"gatsby-plugin-feed": "2.13.1",
"gatsby-plugin-layout": "1.10.0",
"gatsby-plugin-netlify": "2.11.1",
"gatsby-plugin-react-helmet": "3.10.0",
"gatsby-plugin-sharp": "2.14.3",
"gatsby-plugin-typescript": "2.12.1",
"gatsby-remark-images": "3.11.1",
"gatsby-source-contentful": "4.6.4",
"gatsby-source-filesystem": "2.11.1",
"gatsby-transformer-remark": "2.16.1",
"gatsby-transformer-sharp": "2.12.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0"
},
"devDependencies": {
"@testing-library/react": "11.2.6",
"@types/jest": "26.0.22",
"@types/react-helmet": "6.1.1",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"@wdio/cli": "6.12.1",
"@wdio/jasmine-framework": "6.11.0",
"@wdio/local-runner": "6.12.1",
"@wdio/spec-reporter": "6.11.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-preset-gatsby": "0.12.3",
"chromedriver": "88.0.0",
"dotenv-load": "2.0.0",
"eslint": "7.24.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"slugify": "1.5.0",
"typescript": "4.2.4",
"wdio-chromedriver-service": "7.0.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"predeploy": "TARGET=production npm run build -- --prefix-paths",
"type-check": "tsc",
"lint-js": "eslint '**/*.js' --config .eslintrc.js --quiet --fix --ignore-pattern '**/*.{ts,tsx}' --ignore-path .gitignore",
"lint-ts": "eslint 'src/**/*.{ts,tsx}' --config .eslintrc.ts.js --quiet --fix --ignore-pattern '**/*.js' --ignore-path .gitignore",
"fmt:code": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"**/**.{js,jsx,ts,tsx,css}\"",
"fmt:content": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"_*/**/**.md\"",
"fmt": "npm-run-all fmt:code fmt:content",
"fmt:list": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --list-different \"**/**.{js,jsx,ts,tsx}\"",
"lint": "npm-run-all type-check lint-ts lint-js",
"jest": "jest",
"test": "npm-run-all fmt:list lint jest e2e",
"start": "gatsby develop",
"serve": "gatsby serve -p 8000",
"pree2e": "npm run build",
"e2e": "./script/wdio"
},
"repository": {
"type": "git",
"url": "https://github.com/herschel666/photoblog"
},
"bugs": {
"url": "https://github.com/herschel666/photoblog/issues"
}
}