-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 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
79
80
{
"name": "@csec/cms-clubs",
"private": true,
"description": "The portal to all clubs and events related to the Department of Computer and Mathematical Sciences at UTSC.",
"homepage": "https://www.utsccms.club",
"version": "0.1.0",
"author": "CSEC",
"repository": {
"type": "git",
"url": "https://github.com/csecutsc/cmsclubs-v2.git"
},
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.24.60",
"gatsby-image": "^2.4.18",
"gatsby-plugin-google-analytics": "^2.3.14",
"gatsby-plugin-manifest": "^2.4.29",
"gatsby-plugin-mini-css-class-name": "^2.2.0",
"gatsby-plugin-offline": "^3.2.28",
"gatsby-plugin-react-helmet": "^3.3.11",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sass": "^2.3.13",
"gatsby-plugin-sharp": "^2.6.36",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-source-graphql": "^2.7.4",
"gatsby-transformer-sharp": "^2.5.15",
"graphcms-image": "^1.1.0-beta4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-markdown": "^4.3.1",
"sass": "^1.26.10"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/preset-scss": "^1.0.2",
"@storybook/react": "^6.0.26",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"http-proxy-middleware": "^1.0.5",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"pretty-quick": "^2.0.2",
"react-is": "^16.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1"
},
"keywords": [
"CSEC",
"Computer Science Enrichment Club",
"AMACSS",
"UTSC",
"CS",
"UTSC CS",
"UofT CS",
"University of Toronto",
"Scarborough",
"Computer Science"
],
"scripts": {
"start": "npm run codegen && concurrently \"npm:start:*\"",
"start:codegen": "nodemon -e scss,js,svg,woff,woff2 --watch codegen codegen",
"start:storybook": "start-storybook --quiet --ci -p 8001 -s ./static",
"start:gatsby": "GATSBY_GRAPHQL_IDE=playground gatsby develop",
"start:lambda": "cd lambdas; npm ci && npm run start",
"build": "npm run codegen && gatsby build && npm run build:lambda",
"build:storybook": "build-storybook -s ./static",
"build:lambda": "cd lambdas; npm run build",
"format": "prettier --write \"**/*.{js,jsx,scss,mdx}\"",
"clean": "gatsby clean && rm -rf .lambdas",
"codegen": "node ./codegen",
"serve": "gatsby serve"
}
}