forked from pennlabs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.88 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
{
"name": "pennlabs.org",
"private": true,
"description": "Built for students, by students. Penn Labs is the student software development organization improving life at the University of Pennsylvania.",
"version": "0.1.0",
"author": "Penn Labs <[email protected]>",
"dependencies": {
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.7",
"core-js": "^3.8.3",
"crypto": "^1.0.1",
"gatsby": "^2.32.3",
"gatsby-awesome-pagination": "^0.3.5",
"gatsby-background-image": "^1.4.1",
"gatsby-image": "^2.11.0",
"gatsby-plugin-feed": "^2.13.0",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.0",
"gatsby-plugin-offline": "^3.10.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-remote-images": "^2.1.0",
"gatsby-plugin-sharp": "^2.14.1",
"gatsby-plugin-styled-components": "^3.10.0",
"gatsby-plugin-tslint": "^0.0.2",
"gatsby-plugin-typescript": "^2.12.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-images": "^3.11.0",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-source-filesystem": "^2.11.0",
"gatsby-transformer-json": "^2.11.0",
"gatsby-transformer-remark": "^2.16.0",
"gatsby-transformer-sharp": "^2.12.0",
"intersection-observer": "^0.12.0",
"node-fetch": "^2.6.1",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-scroll-parallax": "^2.3.5",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"styled-components": "^5.2.1",
"tslint": "^6.1.3",
"tslint-lines-between-class-members": "^1.3.6",
"tslint-loader": "^3.5.4",
"typeface-inter": "^3.15.1",
"typeface-work-sans": "^1.1.13",
"typescript": "^4.1.4"
},
"devDependencies": {
"husky": "^5.0.9",
"prettier": "^2.2.1"
},
"keywords": [
"technologies",
"software",
"students",
"university",
"university of pennsylvania",
"penn",
"upenn",
"education",
"academics",
"productivity",
"college"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"develop": "gatsby develop",
"format": "prettier --write \"**/**/*.{js,jsx,json,md,ts,tsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "tslint src/**/**/*.ts src/**/**/*.tsx",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 0",
"codecov": "exit 0"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/pennlabs/pennlabs.org"
},
"bugs": {
"url": "https://github.com/pennlabs/pennlabs.org/issues"
}
}