forked from coderetreat/coderetreat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.21 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
{
"name": "coderetreat.org",
"version": "1.0.0",
"description": "The coderetreat.org website - assets and js",
"dependencies": {
"@fortawesome/fontawesome-free": "6.2.0",
"@jitsi/react-sdk": "1.3.0",
"@js-joda/core": "5.4.2",
"@js-joda/locale_en": "4.8.6",
"@js-joda/timezone": "2.15.0",
"@parcel/resolver-glob": "2.8.0",
"abab": "2.0.6",
"ajv": "8.11.2",
"bootstrap": "4.6.2",
"classnames": "2.3.2",
"glob": "8.0.3",
"jquery": "3.6.1",
"pixi-viewport": "4.36.0",
"pixi.js": "=6.5.6",
"popper.js": "1.16.1",
"qs": "6.11.0",
"react": "18.2.0",
"react-bootstrap-typeahead": "=5.2.2",
"react-dom": "18.2.0",
"seedrandom": "3.0.5",
"slug": "8.2.2"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@parcel/babel-preset-env": "2.8.0",
"@parcel/config-default": "2.8.0",
"@parcel/transformer-yaml": "2.8.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.3",
"@types/qs": "6.9.7",
"ajv-formats": "2.1.1",
"babel-jest": "29.3.1",
"benchmark": "2.1.4",
"buffer": "6.0.3",
"canvas": "2.10.2",
"cypress": "11.0.1",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-environment-node": "29.3.1",
"microtime": "3.1.1",
"npm-run-all": "4.1.5",
"parcel": "2.8.0",
"process": "0.11.10",
"querystring-es3": "0.2.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4",
"wait-on": "6.0.1",
"xml-js": "1.6.11"
},
"scripts": {
"start": "run-p -ln watch:jekyll watch",
"build:netlify": "npm run fetch:podcast && parcel build js/*.js js/*.jsx js/*.ts js/*.tsx --cache-dir $NETLIFY_BUILD_BASE/cache/parcel",
"build": "npm run fetch:podcast && parcel build js/*.js js/*.jsx js/*.ts js/*.tsx",
"watch": "npm run fetch:podcast && parcel watch js/*.js js/*.jsx js/*.ts js/*.tsx",
"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",
"targets": {
"default": {
"distDir": "./_site/js/bundled",
"outputFormat": "global",
"scopeHoist": false,
"sourceMap": true,
"publicUrl": "/js/bundled/",
"optimize": true
}
}
}