forked from dr4fters/dr4ft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.11 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
{
"name": "draft",
"version": "1.0.0",
"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& nodemon ./app.js -e html,js --ignore built --ignore frontend",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.dev.js --watch -d --display-error-details",
"lint": "eslint --ignore-path .gitignore .",
"pretest": "npm run lint",
"test": "mocha --reporter spec --exit \"./{,!(node_modules)/**/}*.spec.js\"",
"postinstall": " npm run download_allsets && webpack --config webpack.prod.js",
"update_database": "node scripts/update_database",
"download_allsets": "node scripts/download_allsets"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"engine.io": "^3.4.0",
"engine.io-client": "^3.4.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"fast-xml-parser": "^3.15.1",
"filepond": "^4.13.0",
"filepond-plugin-file-validate-size": "^2.2.1",
"filepond-plugin-file-validate-type": "^1.2.5",
"helmet": "^3.22.0",
"html-webpack-plugin": "4.0.3",
"jsonfile": "^6.0.1",
"lodash": "^4.17.15",
"node-schedule": "^1.3.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-filepond": "^7.0.1",
"semver": "^7.1.3",
"unzipper": "^0.10.10",
"utils": "git://github.com/dr4fters/utils.git",
"uuid": "^7.0.3",
"vanilla-toast": "^0.5.0",
"webpack": "^4.42.1",
"webpack-merge": "^4.2.2",
"weighted": "^0.3.0",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"style-loader": "^1.1.3",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": "^12.8.0"
}
}