-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.82 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@cs125/gatsby-theme-cs125",
"description": "Gatsby theme and React components for CS 125.",
"license": "MIT",
"version": "2020.8.2",
"main": "index.js",
"scripts": {
"backend": "npm run backend:up || npm run backend:down",
"backend:down": "docker-compose --env-file .env.development -p $npm_package_name down",
"backend:up": "docker-compose --env-file .env.development -p $npm_package_name up",
"build": "gatsby build",
"build:lib": "rm -rf dist && tsc --outDir dist && cp package.json dist",
"check": "npm run depcheck && npm run eslint && npm run tsc && npm run prettier",
"clean": "gatsby clean",
"cleanup": "mv gatsby-config.js.bac gatsby-config.js && git clean -df",
"db": "npm run db:up || npm run db:down",
"db:down": "docker-compose --env-file .env.development -p $npm_package_name down",
"db:up": "docker-compose --env-file .env.development -p $npm_package_name up mongodb",
"depcheck": "depcheck --ignore-dirs .cache,public,dist --ignores=@types/*,ts-node,gatsby-*,@typescript-eslint/*,eslint-*,gatsby-source-*,gatsby-transformer-*,@mdx-js/mdx,node-sass,nodemon,concurrently,@cs125/*",
"deploy": "npm run build gh-pages -d public",
"develop": "gatsby develop -p 1234",
"dopublish": "npm run check && npm run build:lib && npm publish dist",
"eslint": "eslint --fix src/ --max-warnings=0 --ext .js,.ts,.tsx",
"ncu": "ncu",
"serve": "gatsby serve -p 1234 -H 0.0.0.0",
"start": "nodemon",
"tsc": "tsc --noEmit",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yaml}\" && prettier-package-json --write"
},
"dependencies": {
"@cs125/chitter": "^2020.7.6",
"@cs125/element-tracker": "^2020.7.1",
"@cs125/jeed": "^2020.7.2",
"@cs125/mace": "^2020.8.11",
"@cs125/monace": "^2020.8.11",
"@cs125/personable-client": "^2020.7.1",
"@cs125/react-google-login": "^2020.7.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"@reach/router": "^1.3.4",
"@rooks/use-timeout": "^3.6.0",
"@types/cheerio": "^0.22.21",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/gravatar": "^1.8.1",
"@types/mdx-js__react": "^1.5.2",
"@types/parse-unit": "^1.0.1",
"@types/react": "^16.9.44",
"@types/react-helmet": "^6.1.0",
"@types/throttle-debounce": "^2.1.0",
"@types/webpack": "^4.41.21",
"ace-builds": "^1.4.12",
"cheerio": "^1.0.0-rc.3",
"dotenv": "^8.2.0",
"gatsby": "2.24.35",
"gatsby-alias-imports": "^1.0.4",
"gatsby-image": "^2.4.14",
"gatsby-plugin-env-variables": "^2.0.0",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-mdx": "^1.2.34",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.25",
"gatsby-plugin-typescript": "^2.4.17",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-sharp": "^2.5.12",
"gravatar": "^1.8.1",
"jsdom": "^16.3.0",
"lodash": "^4.17.19",
"lorem-ipsum": "^2.0.3",
"mdi-material-ui": "^6.17.0",
"moment-timezone": "^0.5.31",
"node-sass": "^4.14.1",
"parse-unit": "^1.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-ace": "github:cs125-illinois/react-ace",
"react-children-utilities": "^2.1.5",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-markdown": "^4.3.1",
"react-virtuoso": "github:cs125-illinois/react-virtuoso",
"runtypes": "^5.0.1",
"slugify": "^1.4.5",
"source-map-support": "^0.5.19",
"throttle-debounce": "^2.2.1",
"ts-node": "^8.10.2",
"webpack": "^4.44.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"depcheck": "^1.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.11",
"gh-pages": "^3.1.0",
"nodemon": "^2.0.4",
"npm-check-updates": "^7.0.3",
"prettier": "2.0.5",
"prettier-package-json": "^2.1.3",
"typescript": "^3.9.7"
},
"nodemonConfig": {
"watch": [
"package.json",
"package-lock.json",
"gatsby-config.js",
"gatsby-config.ts",
"gatsby-node.ts",
"gatsby-browser.ts"
],
"exec": "gatsby develop -p 1234 -H 0.0.0.0"
},
"prettier": {
"semi": false,
"arrowParens": "avoid",
"trailingComma": "es5",
"singleQuote": false,
"printWidth": 120,
"tabWidth": 2
}
}