forked from coderetreat/coderetreat.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.31 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": "coderetreat.org",
"version": "1.0.0",
"description": "The coderetreat.org website - assets and js",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"@js-joda/core": "^3.2.0",
"@js-joda/locale_en": "^3.1.1",
"@js-joda/timezone": "^2.3.0",
"abab": "^2.0.5",
"ajv": "^6.12.5",
"bootstrap": "^4.5.2",
"classnames": "^2.2.6",
"glob": "^7.1.6",
"jquery": "^3.5.1",
"parcel-bundler": "^1.12.4",
"pixi-viewport": "^4.14.0",
"pixi.js": "^5.3.3",
"popper.js": "^1.16.1",
"preact": "^10.5.2",
"qs": "^6.9.4",
"react-bootstrap-typeahead": "^5.1.1",
"seedrandom": "^3.0.5",
"slug": "^3.3.4"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@testing-library/preact": "^2.0.0",
"@types/jest": "^26.0.14",
"@types/qs": "^6.9.5",
"babel-jest": "^26.3.0",
"benchmark": "^2.1.4",
"canvas": "^2.6.1",
"jest": "^26.4.2",
"microtime": "^3.0.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3",
"xml-js": "^1.6.11"
},
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
},
"scripts": {
"start": "run-p -ln watch:jekyll watch",
"build:netlify": "npm run fetch:podcast && parcel build js/*.js js/*.jsx js/*.ts js/*.tsx --log-level 4 --public-url /js/bundled --out-dir _site/js/bundled/ --cache-dir $NETLIFY_BUILD_BASE/cache/parcel",
"build": "npm run fetch:podcast && parcel build js/*.js js/*.jsx js/*.ts js/*.tsx --log-level 4 --public-url /js/bundled --out-dir _site/js/bundled/",
"watch": "npm run fetch:podcast && parcel watch js/*.js js/*.jsx js/*.ts js/*.tsx --no-source-maps --log-level 4 --public-url /js/bundled --out-dir _site/js/bundled/",
"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 --out _data/podcast.json --compact --spaces 4",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderetreat/coderetreat.org.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderetreat/coderetreat.org/issues"
},
"homepage": "https://github.com/coderetreat/coderetreat.org#readme"
}