-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
116 lines (116 loc) · 3.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "draft",
"version": "1.1.1",
"description": "game client/server",
"homepage": "https://github.com/dr4fters/dr4ft",
"bugs": {
"url": "https://github.com/dr4fters/dr4ft/issues"
},
"license": "MIT",
"author": "Dr4fters Team <[email protected]>",
"contributors": [
{
"name": "Zach Halpern",
"email": "[email protected]"
},
{
"name": "Hervé Huneau",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/dr4fters/dr4ft.git"
},
"scripts": {
"start": "node scripts/run",
"start-dev": "npm run watch & npm run nodemon",
"start-debug": "npm run watch & npm run nodemon:debug",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.dev.js --watch -d --display-error-details --devtool inline-source-map",
"nodemon": "nodemon ./app.js -e html,js --ignore built --ignore frontend",
"nodemon:debug": "nodemon --inspect-brk=1338 ./app.js -e html,js --ignore built --ignore frontend",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run postinstall && npm run test:js",
"test:js": "mocha \"./{,!(node_modules|built)/**/}*.spec.*js\" --exit --require @babel/register",
"postinstall": " npm run download_allsets && npm run download_booster_rules && webpack --config webpack.prod.js",
"update_database": "node scripts/update_database ",
"download_allsets": "node scripts/download_allsets",
"download_booster_rules": "node scripts/download_booster_rules"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"axios": "^1.3.5",
"babel-loader": "^9.1.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dompurify": "^2.4.5",
"engine.io": "^6.4.1",
"engine.io-client": "^6.4.0",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"fast-xml-parser": "^4.2.0",
"filepond": "^4.30.4",
"filepond-plugin-file-validate-size": "^2.2.8",
"filepond-plugin-file-validate-type": "^1.2.8",
"fuse.js": "^6.6.2",
"helmet": "^6.1.5",
"html-webpack-plugin": "^5.5.0",
"joi": "^17.9.1",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"node-schedule": "^2.1.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-filepond": "^7.1.2",
"react-select-search": "^3.0.10",
"react-tooltip": "^4.5.1",
"semver": "^7.4.0",
"unzipper": "^0.10.11",
"utils": "git://github.com/dr4fters/utils.git",
"uuid": "^9.0.0",
"vanilla-toast": "^0.5.0",
"webpack": "^5.79.0",
"webpack-merge": "^5.8.0",
"weighted": "^1.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/register": "^7.21.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.30.0",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"regenerator-runtime": "^0.13.11",
"resolve-url-loader": "^5.0.0",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": "^16.15.1 || ^18.12.0",
"npm": ">=9"
}
}