-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.25 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
{
"name": "game-of-thrones-intro-creator",
"version": "1.0.0",
"description": "Game of Thrones Intro Creator by Kassel Labs",
"repository": "git@github.com:KasselLabs/GameOfThronesIntroCreator.git",
"author": "Kassel Labs <kassellabs@googlegroups.com>",
"license": "MIT",
"private": true,
"scripts": {
"set-clip": "./setClip.sh",
"change-time-factor": "./changeTime.sh",
"clear": "rm -rf dist .parcel-cache",
"copy-static": "cp src/robots.txt src/sitemap.xml src/llms.txt dist/",
"build": "npm run clear && parcel build ./src/index.html --public-url / && npm run copy-static",
"build-renderer": "APPLICATION_MODE=renderer npm run build -- --no-source-maps",
"start-renderer": "http-server dist -p 3000",
"build-dev": "npm run build --public-url /",
"start": "parcel ./src/index.html --port 8080 --no-hmr",
"test": "echo \"No tests configured\"",
"test:watch": "npm test --watchAll",
"test:coverage": "npm test --coverage",
"test:coverage:results": "google-chrome coverage/lcov-report/index.html",
"lint": "eslint src/"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.0",
"@babel/preset-react": "^7.24.0",
"@parcel/packager-raw-url": "^2.16.4",
"@parcel/transformer-stylus": "^2.13.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"http-server": "^14.1.1",
"parcel": "^2.13.3"
},
"dependencies": {
"@parcel/transformer-jsonld": "^2.16.4",
"axios": "^0.18.1",
"bowser": "^2.6.1",
"clappr": "^0.3.6",
"classnames": "^2.5.1",
"dompurify": "^3.0.6",
"fscreen": "^1.0.2",
"fullscreen-polyfill": "^1.0.2",
"humanize-duration": "^3.18.0",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-context-connector": "^0.1.2",
"react-dom": "^16.14.0",
"react-fullscreen-crossbrowser": "^1.0.9",
"react-router-dom": "^4.3.1",
"react-tooltip": "^3.11.1",
"react-youtube": "^7.5.0",
"sweetalert2": "7.17"
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}