-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.41 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
{
"name": "lemon-press-website",
"private": true,
"description": "The official website for The Lemon Press, York.",
"version": "1.0.0",
"author": "Yordevs",
"bugs": {
"url": "https://github.com/LemonPressYork/website/issues"
},
"dependencies": {
"@fontsource/source-sans-pro": "^4.5.0",
"@stitches/react": "^0.2.5",
"@types/react-helmet": "^6.1.2",
"gatsby": "^3.12.1",
"gatsby-link": "^3.12.0",
"gatsby-plugin-image": "^1.12.0",
"gatsby-plugin-manifest": "^3.12.0",
"gatsby-plugin-offline": "^4.12.0",
"gatsby-plugin-react-helmet": "^4.12.0",
"gatsby-plugin-sharp": "^3.12.0",
"gatsby-plugin-typescript": "^3.12.0",
"gatsby-source-custom-api": "^2.3.1",
"gatsby-source-filesystem": "^3.12.0",
"gatsby-source-wordpress": "^5.12.1",
"gatsby-transformer-sharp": "^3.12.0",
"html-react-parser": "^1.2.8",
"lodash": "^4.17.20",
"postcss": "^8.2.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-multiline-clamp": "^2.0.0",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/react": "^6.3.7",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.2",
"dumper.js": "^1.3.1",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
},
"homepage": "https://thelemonpress.co.uk",
"keywords": [
"gatsby"
],
"license": "0BSD",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/LemonPressYork/website.git"
},
"lint-staged": {
"*.{js,jsx}": "eslint"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"To be added...\"",
"lint": "eslint .",
"prepare": "husky install",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}