-
Notifications
You must be signed in to change notification settings - Fork 418
/
package.json
94 lines (94 loc) · 2.9 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
{
"name": "coderetreat.org",
"version": "1.0.0",
"description": "The coderetreat.org website - assets and js",
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.0",
"@jitsi/react-sdk": "1.4.0",
"@js-joda/core": "5.6.3",
"@js-joda/locale_en": "4.14.0",
"@js-joda/timezone": "2.21.1",
"abab": "2.0.6",
"ajv": "8.17.1",
"bootstrap": "4.6.2",
"classnames": "2.5.1",
"glob": "11.0.0",
"jquery": "3.7.1",
"mapbox-gl": "^3.0.0",
"pixi-viewport": "5.0.3",
"pixi.js": "^7.2.4",
"popper.js": "1.16.1",
"qs": "6.13.1",
"react": "18.3.1",
"react-bootstrap-typeahead": "=5.2.2",
"react-dom": "18.3.1",
"seedrandom": "3.0.5",
"slug": "10.0.0",
"yaml": "^2.3.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/mapbox-gl": "^3.0.0",
"@types/qs": "6.9.17",
"@types/seedrandom": "^3.0.6",
"@vitejs/plugin-react": "^4.1.0",
"ajv-formats": "3.0.1",
"babel-jest": "29.7.0",
"benchmark": "2.1.4",
"buffer": "6.0.3",
"canvas": "2.11.2",
"cypress": "13.16.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "29.7.0",
"jsdom": "^25.0.0",
"microtime": "3.1.1",
"npm-run-all2": "7.0.1",
"process": "0.11.10",
"punycode": "^2.0.0",
"querystring-es3": "0.2.1",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"vite": "^5.0.0",
"wait-on": "8.0.1",
"xml-js": "1.6.11"
},
"scripts": {
"start": "run-p -ln watch:jekyll watch",
"build:js": "vite build",
"build:netlify": "npm run build",
"build": "run-s fetch:podcast build:js",
"watch": "npm run fetch:podcast && vite build --watch",
"watch:jekyll": "bundle exec jekyll serve --livereload -V -H 0.0.0.0",
"fetch:podcast": "wget -O _data/podcast.xml https://www.code-cop.org/podcast/rss_feed.php && xml-js _data/podcast.xml --tries 1 --timeout 5 --out _data/podcast.json --compact --spaces 4 || true",
"test": "jest",
"serve": "bundle exec jekyll serve --no-watch",
"cypress": "run-s cypress:prepare cypress:test",
"cypress:prepare": "run-s cypress:seed build",
"cypress:seed": "node scripts/create_upcoming_event_for_testing.js",
"cypress:test": "cypress run"
},
"jest": {
"testPathIgnorePatterns": [
".github/"
],
"preset": "ts-jest/presets/js-with-babel",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderetreat/coderetreat.org.git"
},
"author": "",
"browserslist": "> 0.5%, last 2 versions, not dead",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderetreat/coderetreat.org/issues"
},
"homepage": "https://github.com/coderetreat/coderetreat.org#readme"
}