-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.11 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.11 KB
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
{
"name": "string.eusa.ed.ac.uk",
"description": "The official website for the Edinburgh University String Orchestra",
"version": "1.0.0",
"author": "Edinburgh University String Orchestra",
"repository": "git@github.com/Edinburgh-University-String-Orchestra/euso-website",
"scripts": {
"dev": "gatsby develop",
"serve": "gatsby serve",
"build": "echo 'Re-building public html' && gatsby build",
"clean-commit": "git commit -a --no-verify",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "yarn run clean && yarn run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/posts/",
"format:js": "prettier '**/*.{js,jsx}' --write",
"check": "yarn upgrade-interactive --latest"
},
"pre-commit": [
"build"
],
"dependencies": {
"eslint-utils": "^3.0.0",
"gatsby": "^3.13.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-catch-links": "^3.13.0",
"gatsby-plugin-feed": "^3.13.0",
"gatsby-plugin-manifest": "^3.13.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-nprogress": "^3.13.0",
"gatsby-plugin-offline": "^4.13.0",
"gatsby-plugin-react-helmet": "4.13.0",
"gatsby-plugin-sass": "^4.13.0",
"gatsby-plugin-sharp": "^3.13.0",
"gatsby-plugin-sitemap": "4.9.0",
"gatsby-remark-autolink-headers": "^4.10.0",
"gatsby-remark-copy-linked-files": "^4.10.0",
"gatsby-remark-graphviz": "^3.10.0",
"gatsby-remark-images": "5.10.0",
"gatsby-remark-katex": "^5.10.0",
"gatsby-remark-prismjs": "5.10.0",
"gatsby-remark-table-of-contents": "1.0.0",
"gatsby-source-filesystem": "^3.13.0",
"gatsby-transformer-remark": "4.10.0",
"gatsby-transformer-sharp": "^3.12.0",
"katex": "^0.13.18",
"lodash": "^4.17.15",
"lodash.kebabcase": "^4.1.1",
"moment": "^2.24.0",
"node-sass": "^6.0.1",
"pre-commit": "^1.2.2",
"prismjs": "^1.19.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-github-btn": "^1.1.1",
"react-helmet": "^6.1.0",
"react-typist": "^2.0.4",
"react-visibility-sensor": "^5.0.2",
"sharp": "^0.24.1",
"url-join": "^4.0.1"
},
"resolutions": {
"sharp": "0.28.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cli-glob": "^0.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"prettier": "^2.4.0",
"remark-cli": "^10.0.0",
"remark-preset-lint-recommended": "^6.0.1",
"stylefmt": "^6.0.3",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^22.0.0",
"write-good": "^1.0.2"
},
"keywords": [
"edinburgh university string orchestra",
"university of edinburgh",
"orchestra",
"music",
"classical music",
"string orchestra",
"string",
"euso",
"edinburgh",
"reid hall",
"student"
],
"license": "MIT",
"main": "n/a",
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}