-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 2.9 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
{
"name": "nubook",
"description": "The NUbots team handbook.",
"version": "1.0.0",
"author": "NUbots",
"private": true,
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@docsearch/react": "^3.5.2",
"@josephuspaye/gatsby-remark-graphviz": "^0.3.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"autoprefixer": "^10.2.4",
"babel-preset-gatsby": "^1.12.0",
"citation-js": "^0.5.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"focus-visible": "^5.0.2",
"gatsby": "^3.11.1",
"gatsby-plugin-image": "^1.11.0",
"gatsby-plugin-manifest": "^3.11.0",
"gatsby-plugin-mdx": "^2.11.0",
"gatsby-plugin-offline": "^4.11.0",
"gatsby-plugin-postcss": "^4.11.0",
"gatsby-plugin-react-helmet": "^4.11.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^3.11.0",
"gatsby-plugin-sitemap": "4.7.0",
"gatsby-remark-autolink-headers": "^4.8.0",
"gatsby-remark-copy-linked-files": "^4.8.0",
"gatsby-remark-images": "^5.8.0",
"gatsby-source-filesystem": "^3.11.0",
"gatsby-transformer-sharp": "^3.11.0",
"husky": "^7.0.0",
"katex": "^0.13.13",
"postcss": "^8.3.6",
"postcss-nested": "^5.0.6",
"prettier": "^2.3.2",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.24.1",
"prop-types": "^15.7.2",
"react": "^18.0.1",
"react-dom": "^18.0.1",
"react-helmet": "^6.1.0",
"react-transition-group": "^4.4.2",
"rehype-katex": "^5.0.0",
"remark-math": "^3.0.1",
"remark-unwrap-images": "^2.1.0",
"rimraf": "^3.0.2",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^22.0.0",
"tailwindcss": "^2.2.7",
"webpack": "^5.73.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"clean": "rimraf .cache/ public/",
"lint": "eslint \"src/**/*.{jsx,js}\" \"*.js\" && stylelint \"src/**/*.css\"",
"format": "stylelint \"src/**/*.css\" --fix && prettier --write \"*.js\" \"src/**/*.{css,jsx,js,mdx}\" \"build-plugins/**/*.js\"",
"format:check": "prettier --check \"*.js\" \"src/**/*.{css,jsx,js,mdx}\" \"build-plugins/**/*.js\"",
"generate-readmes": "node add-readmes.js",
"check-links": "node check-links.js"
},
"repository": {
"type": "git",
"url": "https://github.com/NUbots/NUbook"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"quoteProps": "consistent",
"trailingComma": "es5",
"jsxBracketSameLine": false,
"endOfLine": "lf",
"overrides": [
{
"files": "*.mdx",
"options": {
"parser": "markdown"
}
}
]
},
"browserslist": [
">0.25%",
"not dead"
],
"resolutions": {
"probe-image-size": "^7.0.0"
}
}