-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 4.18 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@brionmario/gatsby-starter",
"private": true,
"description": "A fully loaded starter kit for Gatsby development to get your website up and running in minutes.",
"version": "0.1.0",
"author": "Brion Mario",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@headlessui/react": "^1.4.3",
"classnames": "^2.3.1",
"gatsby": "^4.6.0",
"gatsby-plugin-gatsby-cloud": "^4.6.0",
"gatsby-plugin-image": "^2.6.0",
"gatsby-plugin-manifest": "^4.6.0",
"gatsby-plugin-offline": "^5.6.0",
"gatsby-plugin-react-helmet": "^5.6.0",
"gatsby-plugin-sharp": "^4.6.0",
"gatsby-source-filesystem": "^4.6.0",
"gatsby-theme-i18n": "^3.0.0",
"gatsby-theme-i18n-react-i18next": "^3.0.0",
"gatsby-transformer-sharp": "^4.6.0",
"i18next": "^21.6.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.15.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@danbruegge/gatsby-plugin-stylelint": "^4.1.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.4.6",
"babel-preset-gatsby": "^2.6.0",
"cypress": "^9.3.1",
"eslint": "^8.8.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.4",
"eslint-webpack-plugin": "^3.1.1",
"gatsby-plugin-eslint": "^4.0.2",
"gatsby-plugin-postcss": "^5.6.0",
"gatsby-plugin-sass": "^5.6.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"postcss": "^8.4.5",
"sass": "^1.49.0",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.3.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"tailwindcss": "^3.0.18",
"typescript": "^4.5.5"
},
"keywords": [
"gatsby",
"stylelint",
"sass",
"typescript",
"eslint",
"fontawesome",
"gatsby",
"mdx",
"cypress",
"react-i18next",
"gatsby-starter",
"tailwindcss",
"react-testing-library"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"cy:headless": "cypress run",
"cy:interactive": "cypress open",
"develop": "gatsby develop",
"lint": "npm run lint:es && npm run lint:styles",
"lint:es": "eslint -c .eslintrc.js --ext .js,.jsx,.ts,.tsx .",
"lint:staged": "lint-staged",
"lint:styles": "stylelint 'src/**/*.{css,scss,sass}' --config stylelint.config.js --allow-empty-input",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --passWithNoTests",
"test:unit:coverage": "npm run test:unit -- --coverage",
"test:unit:watch": "npm run test:unit -- --watch",
"test:e2e": "start-server-and-test start http://localhost:8000 cy:interactive",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/apareciumlabs/apareciumlabs.com"
},
"bugs": {
"url": "https://github.com/apareciumlabs/apareciumlabs.com/issues"
}
}