-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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": "artsideout",
"private": true,
"description": "UTSC's Largest One-Day Art Festival",
"version": "0.1.0",
"author": "Computer Science Enrichment Club",
"dependencies": {
"@capacitor/android": "^3.0.2",
"@capacitor/cli": "^3.0.2",
"@capacitor/core": "^3.0.2",
"@capacitor/ios": "^3.0.2",
"@chakra-ui/gatsby-plugin": "^2.0.1",
"@chakra-ui/icons": "^1.0.13",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"disqus-react": "^1.1.2",
"framer-motion": "^4.1.17",
"gatsby": "^3.8.0",
"gatsby-plugin-disqus": "^1.2.3",
"gatsby-plugin-image": "^1.8.0",
"gatsby-plugin-manifest": "^3.8.0",
"gatsby-plugin-mdx": "^2.8.0",
"gatsby-plugin-netlify": "^3.8.0",
"gatsby-plugin-offline": "^4.8.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-source-graphcms": "^2.6.0",
"gatsby-transformer-sharp": "^3.8.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-audio-player": "^0.17.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^17.0.1",
"react-h5-audio-player": "^3.7.2",
"react-helmet": "^6.1.0",
"react-image-gallery": "^1.1.1",
"slugify": "^1.5.3"
},
"devDependencies": {
"@types/node": "^14.17.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-image-gallery": "^1.0.3",
"prettier": "2.2.1",
"typescript": "^4.3.4"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"start:android": "npm run build && npx cap copy android && npx cap open android",
"start:ios": "npm run build && npx cap copy ios && npx cap open ios",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
}
}