-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "cos-426-website",
"description": "The Princeton University course website for the Spring 2019 term of COS 426: Computer Graphics",
"version": "1.0.0",
"license": "MIT",
"author": "ReillyBova",
"keywords": [
"COS 426",
"Princeton",
"Graphics",
"Computer Science",
"Spring 2019"
],
"repository": {
"type": "git",
"url": "https://github.com/ReillyBova/COS426-Website"
},
"private": false,
"scripts": {
"develop": "gatsby develop",
"deploy-gh": "gatsby build --prefix-paths && gh-pages -d public",
"format": "prettier --write '*.js' '*.jsx' 'src/**/*.js' 'src/**/*.jsx'",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"clean": "gatsby clean"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@reach/router": "^1.3.4",
"gatsby": "^2.30.1",
"gatsby-image": "^2.9.0",
"gatsby-plugin-layout": "^1.8.0",
"gatsby-plugin-manifest": "^2.10.0",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-react-helmet": "^3.8.0",
"gatsby-plugin-sharp": "^2.12.0",
"gatsby-plugin-sitemap": "^2.10.0",
"gatsby-remark-copy-linked-files": "^2.8.0",
"gatsby-remark-images": "^3.9.0",
"gatsby-remark-katex": "^3.8.0",
"gatsby-remark-prismjs": "^3.11.0",
"gatsby-remark-smartypants": "^2.8.0",
"gatsby-source-filesystem": "^2.9.0",
"gatsby-transformer-remark": "^2.14.0",
"gatsby-transformer-sharp": "^2.10.0",
"katex": "^0.12.0",
"mdi-material-ui": "^6.21.0",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-transition-group": "^4.4.1",
"rehype-react": "^6.1.0",
"stats-js": "^1.0.1",
"three": "^0.124.0"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}