forked from pittcsc/pittcswiki
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.59 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
{
"name": "pitt-cs-wiki",
"private": false,
"description": "Hail to Pitt!",
"version": "0.1.0",
"author": "Pitt CSC <[email protected]>",
"dependencies": {
"@mdx-js/mdx": "^2.2.1",
"@mdx-js/react": "^2.2.1",
"algoliasearch": "^4.14.3",
"cheerio": "^1.0.0-rc.12",
"dagre-d3-react": "^0.2.4",
"dotenv": "^16.0.3",
"gatsby": "^5.4.1",
"gatsby-cli": "^5.4.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-algolia": "^1.0.2",
"gatsby-plugin-catch-links": "^5.4.0",
"gatsby-plugin-google-analytics": "^5.4.0",
"gatsby-plugin-manifest": "^5.4.0",
"gatsby-plugin-mdx": "^5.4.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^6.4.0",
"gatsby-plugin-react-helmet": "^6.4.0",
"gatsby-plugin-sass": "^6.4.0",
"gatsby-plugin-sharp": "^5.4.0",
"gatsby-redirect-from": "^1.0.0",
"gatsby-remark-autolink-headers": "^6.4.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-source-google-spreadsheet": "^2.0.0",
"gatsby-transformer-json": "^5.4.0",
"gatsby-transformer-remark": "^6.4.0",
"gatsby-transformer-sharp": "^5.4.0",
"gatsby-transformer-yaml": "^5.4.0",
"github-slugger": "^2.0.0",
"glob": "^8.1.0",
"gray-matter": "^4.0.2",
"parse-markdown-links": "^1.0.4",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.38.3",
"request": "^2.88.0",
"request-promise": "^4.2.6",
"sass": "^1.57.1",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"jest": "^24.9.0",
"prettier": "2.0.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"indexalgolia": "INDEX_ALGOLIA=true gatsby build",
"test": "jest",
"check_correct_courses": "jest tests/check_course_info_matches.test.js",
"generate_rmp_data_json": "(git -C ./helpers/rmp/PittAPI pull -q || git clone -q https://github.com/Richie78321/PittAPI.git ./helpers/rmp/PittAPI) && python ./helpers/rmp/get-rmp-data.py",
"DEPECRATED_scrape_courses": "node helpers/courses/course_scraper.js --save",
"DEPRECATED_generate_markdown": "node helpers/courses/course_scraper.js --generatemarkdown"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}