-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "qcr-sites-shared",
"version": "0.5.6",
"description": "Shared development tools for QCR-branded websites",
"private": true,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build_assets && tsc -p src/ && cp src/styles/*.css lib/styles/",
"build_assets": "npx @svgr/cli --no-index --ignore-existing --out-dir src/assets/ assets/",
"build_site": "npm run build && next build",
"dev": "npm run build && tsc -p demo_assets/ && next dev",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qcr/sites-shared.git"
},
"author": "b.talbot@qut.edu.au",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/qcr/sites-shared/issues"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/qcr/sites-shared#readme",
"devDependencies": {
"@svgr/cli": "^6.2.1",
"@svgr/webpack": "^6.2.1",
"@types/glob": "^7.2.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.12",
"eslint": "^8.10.0",
"eslint-config-next": "^12.1.0",
"prettier": "^2.5.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mdx-js/loader": "^2.1.0",
"@mdx-js/mdx": "^2.1.0",
"@mdx-js/react": "^2.1.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.4.4",
"github-markdown-css": "^5.1.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-element-to-jsx-string": "^14.3.4",
"react-multi-carousel": "^2.8.0",
"rehype-mathjax": "^4.0.2",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-mdx-frontmatter": "^1.1.1"
}
}