This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
forked from EnCiv/undebate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.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
{
"name": "undebate",
"version": "0.0.0",
"description": "Not debates, but a place where voters can get to know their candidates",
"main": "dist/server/start.js",
"scripts": {
"start": "node dist/server/start.js",
"test": "echo \"Error: no test specified\" && exit 1",
"transpile": "babel app --ignore app/test --out-dir dist --source-maps",
"hot-transpile": "babel --watch app --ignore app/test --out-dir dist/ --source-maps",
"hot-server": "nodemon --inspect dist/server/start.js",
"hot-client": "webpack-dev-server --config webpack-dev.config.js --devtool source-map --host 0.0.0.0",
"postinstall": "bash postinstall.sh",
"packbuild": "webpack --config webpack-prod.config.js",
"dev": "echo \"these delays need to be kept up to date\" && concurrently -k \"npm run hot-transpile\" \"sleep 10 && npm run hot-server\" \"sleep 15 && npm run hot-client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synaccord/undebate.git"
},
"author": "David Fridley",
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/Synaccord/undebate/issues"
},
"homepage": "https://github.com/Synaccord/undebate#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"concurrently": "^4.1.2",
"nodemon": "^1.19.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@hapi/joi": "^15.1.0",
"babel-loader": "^8.0.6",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"cloudinary": "^1.14.0",
"color": "^3.1.2",
"colors": "^1.3.3",
"cookie-parser": "^1.4.4",
"core-js": "^3.2.0",
"csvtojson": "^2.0.10",
"device": "^0.3.9",
"express": "^4.17.1",
"get-youtube-id": "^1.0.1",
"hh-mm-ss": "^1.2.0",
"is-email": "^1.0.0",
"lodash": "^4.17.15",
"log4js": "git+https://github.com/ddfridley/log4js-node.git#onbrowser",
"log4js-extend": "^0.2.1",
"log4js-node-mongodb": "^2.2.1",
"marked": "^0.7.0",
"mongo-models": "^3.0.1",
"mongodb": "^3.3.0-beta2",
"nodemailer": "^6.3.0",
"objects-to-csv": "^1.3.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.12.10",
"react-html-parser": "^2.0.2",
"react-jss": "^8.6.1",
"regenerator-runtime": "^0.13.3",
"shuffle-array": "^1.0.1",
"sniffr": "^1.2.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"socket.io-stream": "^0.9.1",
"string": "^3.3.3",
"superagent": "^5.1.0",
"through2": "^3.0.1",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webrtc-adapter": "^7.2.9"
},
"engines": {
"node": "~10.16.2",
"npm": "6.9.0"
}
}