-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 2.23 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
{
"name": "sysadmins-website",
"private": true,
"description": "Official website of TJHSST's sysadmins team",
"version": "0.1.0",
"dependencies": {
"gatsby": "2.23.22",
"gatsby-plugin-manifest": "2.4.17",
"gatsby-plugin-offline": "3.2.16",
"gatsby-plugin-postcss": "2.3.9",
"gatsby-plugin-purgecss": "5.0.0",
"gatsby-plugin-react-helmet": "3.3.9",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sitemap": "^2.4.10",
"gatsby-source-filesystem": "^2.3.18",
"graphql": "15.3.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-markdown": "^4.3.1",
"react-obfuscate": "^3.6.7"
},
"keywords": [
"sysadmins",
"tjhsst",
"tjcsl",
"gatsby"
],
"scripts": {
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze:prettier": "prettier --list-different '**/*.{js,css,md,json}'",
"analyze": "npm run analyze:lint && npm run analyze:prettier",
"build": "gatsby build",
"develop": "gatsby develop",
"fix:lint": "eslint --ext .jsx --ext .js . --fix",
"fix:prettier": "prettier --write '**/*.{js,css,md,json}'",
"fix": "npm run fix:lint && npm run fix:prettier",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.6.0",
"@typescript-eslint/parser": "3.6.0",
"babel-eslint": "10.1.0",
"cssnano": "^4.1.10",
"eslint": "7.4.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-react-hooks": "4.0.6",
"prettier": "2.0.5",
"tailwindcss": "1.4.6",
"typescript": "3.9.6"
},
"repository": {
"type": "git",
"url": "https://github.com/tjcsl/sysadmins-website"
},
"bugs": {
"url": "https://github.com/tjcsl/sysadmins-website"
}
}