-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
90 lines (90 loc) · 2.4 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
{
"name": "joust",
"version": "0.12.0",
"description": "Hearthstone replays in your browser",
"keywords": [
"hearthstone",
"hsreplay"
],
"homepage": "https://hearthsim.info/joust/",
"bugs": {
"url": "https://github.com/HearthSim/Joust/issues"
},
"license": "UNLICENSED",
"author": "Benedict Etzel <[email protected]>",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/HearthSim/Joust.git"
},
"scripts": {
"build": "gulp compile:web",
"dev": "concurrently 'gulp watch:html watch:assets watch:styles' 'webpack --watch -d'",
"test": "karma start --single-run --no-auto-watch karma.conf.js",
"postinstall": "gulp enums:download",
"lint": "yarn lint:prettier",
"lint:prettier": "prettier -l \"*.{js,json}\" \"ts/**/*.{ts,tsx,js}\"",
"format": "yarn format:prettier",
"format:prettier": "prettier --write \"*.{js,json}\" \"ts/**/*.{ts,tsx,js}\""
},
"dependencies": {
"@electron/remote": "^2",
"@types/cookiejs": "^1.0.30",
"@types/jasmine": "^2.5.46",
"@types/lodash": "^4.14.58",
"@types/node": "^8.0.24",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/sax": "^1.0.0",
"autoprefixer": "^7.1.2",
"babel-core": "^6.24.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"bowser": "^1.6.0",
"cookie_js": "^1.2.2",
"cssnano": "^3.10.0",
"electron": "^14",
"filereader-stream": "^1.0.0",
"git-describe": "^4.0.1",
"gulp": "^4.0.2",
"gulp-download": "0.0.1",
"gulp-file": "^0.4.0",
"gulp-filter": "^5.0.0",
"gulp-less": "^3.3.0",
"gulp-livereload": "^3.8.1",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^7.0.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-util": "^3.0.8",
"hearthstonejson-client": "^1.16.0",
"immutable": "^3.8.1",
"lodash": "^4.17.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sax": "^1.2.2",
"screenfull": "^3.1.0",
"through2": "^2.0.3",
"ts-loader": "^3.5.0",
"typescript": "~4.9",
"webpack": "^3.5.5",
"webpack-stream": "^4.0.0",
"websocket-stream": "^5.0.1"
},
"devDependencies": {
"concurrently": "^3.5.1",
"jasmine": "^2.5.3",
"karma": "^1.5.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.3",
"phantomjs-prebuilt": "^2.1.14",
"prettier": "^1.13.2"
},
"prettier": {
"useTabs": true,
"arrowParens": "always",
"trailingComma": "all"
},
"private": true
}