-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.13 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
{
"name": "game-of-thrones-intro-creator",
"version": "1.0.0",
"description": "Game of Thrones Intro Creator by Kassel Labs",
"repository": "[email protected]:KasselLabs/GameOfThronesIntroCreator.git",
"author": "Kassel Labs <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"set-clip": "./setClip.sh",
"change-time-factor": "./changeTime.sh",
"clear": "rm -rf dist .cache",
"build": "npm run clear && parcel build ./src/index.html --public-url / --no-cache",
"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 / --no-cache",
"start": "parcel ./src/index.html -p 8080 --no-hmr",
"test": "jest",
"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-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"http-server": "^0.11.1",
"jest": "^23.1.0",
"parcel-bundler": "^1.9.2",
"stylint": "^1.5.9",
"stylus": "^0.54.5"
},
"dependencies": {
"axios": "^0.18.1",
"babel-preset-react": "^6.24.1",
"bowser": "^2.6.1",
"clappr": "^0.3.6",
"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"
}
}