-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"author": {
"email": "[email protected]",
"name": "Thomas David Baker"
},
"babel": {
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": false
}
]
],
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"bugs": {
"url": "https://github.com/PennyDreadfulMTG/Penny-Dreadful-Tools/issues"
},
"dependencies": {
"axios": "^1.7.9",
"lodash": "^4.17.21",
"prop-types": "^15.8.1"
},
"description": "A suite of tools for the Penny Dreadful MTGO community.",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-stage-2": "^7.8.3",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"homepage": "https://github.com/PennyDreadfulMTG/Penny-Dreadful-Tools#readme",
"keywords": [
"pd",
"pennydreadful",
"mtg",
"mtgo",
"magic"
],
"license": "GPL-3.0-or-later",
"main": "None",
"name": "penny-dreadful-tools",
"repository": {
"type": "git",
"url": "git+https://github.com/PennyDreadfulMTG/Penny-Dreadful-Tools.git"
},
"scripts": {
"babel": "babel --presets es2015 js/main.js -o build/main.bundle.js",
"build": "webpack --mode=production --progress --config decksite/webpack.config.js",
"dev-build": "webpack --progress --mode=development --config decksite/webpack.config.js",
"test": "make test",
"watch": "webpack --progress --mode=development --config decksite/webpack.config.js --watch"
},
"version": "1.0.0"
}