This repository has been archived by the owner on Aug 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.7 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
{
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint .",
"benchmark": "babel-node ./benchmarks/index.js",
"prebuild": "rm -rf dist",
"build": "yarn run build:chrome && yarn run build:firefox",
"build:cards": "babel-node ./scripts/buildCardsData.js",
"build:chrome": "./scripts/buildChrome.sh",
"build:firefox": "mkdir -p dist/firefox && cp -r dist/chrome/** dist/firefox/ && node scripts/buildFirefox.js",
"build:website": "yarn run build:cards && webpack --config ./webpack/website.js --mode production",
"start": "yarn run build:cards && webpack-dev-server --config ./webpack/website.js",
"start:popup": "webpack-dev-server --config ./webpack/popup.js",
"deploy": "yarn run build:website && gh-pages -d dist/website",
"prepack": "yarn run build",
"pack": "web-ext build -s dist/chrome/ -o -a chrome-build && web-ext build -s dist/firefox/ -o -a firefox-build"
},
"dependencies": {
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"big-text.js": "^1.0.1",
"core-js": "3",
"flatmap": "^0.0.3",
"gwent-data-release": "https://github.com/GwentCommunityDevelopers/gwent-data-release/tarball/afa8f06389e1bc2b3b0781be4836168de5419ebf/gwent-data-release.tar.gz",
"intercalate": "^0.1.2",
"jsx-dom": "^6.2.1",
"pluralize": "^6.0.0",
"preact": "^8.4.2",
"remove-accents": "^0.4.1",
"seamless-immutable": "^7.1.2",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.4",
"benchmark": "^2.1.4",
"clean-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"eslint": "^5.9.0",
"eslint-config-gitbook": "^4.0.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"expect": "^24.9.0",
"file-loader": "^2.0.0",
"flow-bin": "^0.86.0",
"gh-pages": "^2.0.1",
"gwent-api-client": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^24.9.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"prettier": "^1.15.2",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"web-ext": "^3.0.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"sideEffects": []
}