-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.18 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.18 KB
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
{
"name": "brainhack_western_website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"schema-gen": "npx typescript-json-schema ./tsconfig.json SiteConfig --required -o public/schemas/brainhack-config.json",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build",
"gh-build": "rm -rf node_modules/.cache && next build && touch out/.nojekyll",
"deploy": "npm run gh-build && git stash && git add -f out && git commit -m 'Deploying' && git subtree split --prefix out -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages && git reset HEAD~1 && git stash pop && rm -rf out",
"preinstall": "python3 --version | grep -Eq '[\\w\\s]*3\\.(8|9|[1-9][0-9])\\.[0-9]+' || (echo 'Must have python 3.8 or higher installed and active' && exit 1)",
"postinstall": "([ -d .venv ] || python3 -m venv .venv) && .venv/bin/python -m pip install git+https://github.com/pvandyken/overlapping-events.git"
},
"dependencies": {
"@tylermenezes/cognitoforms-react": "git://github.com/pvandyken/cognitoforms-react.git#v2.1.0.dev3",
"@typed-actions/github-script": "^1.0.1",
"@vanilla-extract/css": "^1.9.1",
"@vanilla-extract/sprinkles": "^1.5.0",
"bootstrap": "^5.1.3",
"color-interpolate": "^1.0.5",
"color2k": "^2.0.0",
"email-validator": "^2.0.4",
"eslint-plugin-unused-imports": "^3.0.0",
"html-minifier-terser": "^7.2.0",
"hypertag": "^0.0.6",
"image-size": "^1.0.2",
"immer": "^10.0.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"luxon": "^3.4.1",
"mjml-browser": "^4.14.1",
"next": "^15.1.5",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
"react-obfuscate": "^3.6.8",
"react-select": "^5.7.4",
"react-transition-group": "^4.4.5",
"remark-emoji": "^4.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.42.1",
"server-only": "^0.0.1",
"slugify": "^1.6.6",
"ts-debounce": "^4.0.0",
"ts-functional-pipe": "^3.1.2",
"utility-types": "^3.10.0",
"word-join": "^0.0.1"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@faire/mjml-react": "^3.3.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@next/bundle-analyzer": "^13.0.1",
"@types/bootstrap": "^5.1.6",
"@types/color": "^3.0.2",
"@types/html-minifier-terser": "^7.0.0",
"@types/js-yaml": "^4.0.3",
"@types/lodash": "^4.14.183",
"@types/luxon": "^3.3.1",
"@types/mjml": "^4.7.1",
"@types/mjml-core": "^4.7.1",
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"@types/react-helmet": "^6.1.6",
"@types/react-transition-group": "^4.4.5",
"@vanilla-extract/next-plugin": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mjml": "^4.7.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"typescript-json-schema": "^0.61.0"
}
}