forked from dr4fters/dr4ft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.05 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": "0.2.5",
"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]"
},
{
"name": "Ben Wagner",
"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 public",
"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",
"setup-env": "node scripts/setup-test-env",
"postinstall": "node scripts/setup-test-env && node scripts/postinstall && webpack --config webpack.prod.js"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@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.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"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.11.0",
"filepond-plugin-file-validate-size": "^2.2.0",
"filepond-plugin-file-validate-type": "^1.2.4",
"helmet": "^3.21.2",
"html-webpack-plugin": "3.2.0",
"jsonfile": "^5.0.0",
"node-schedule": "^1.3.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-filepond": "^7.0.1",
"semver": "^7.1.2",
"unzipper": "^0.10.8",
"utils": "git://github.com/dr4fters/utils.git",
"uuid": "^3.4.0",
"vanilla-toast": "^0.5.0",
"webpack": "^4.41.6",
"webpack-merge": "^4.2.2",
"winston": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"style-loader": "^1.1.3",
"webpack-cli": "^3.3.10"
},
"engines": {
"node": "^11.0.0"
}
}