-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.77 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
{
"name": "triton-poll",
"version": "1.0.0",
"private": true,
"description": "Live virtual voting and placard rasing for Triton MUN",
"homepage": "https://github.com/evelynhathaway/triton-poll#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/triton-poll/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/triton-poll.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"contributors": [
"Milos Kovacevic"
],
"main": "./lib/index.js",
"scripts": {
"gulp": "gulp",
"build": "run-p --aggregate-output build:*",
"build-watch": "run-p -l build-watch:*",
"build-watch:client": "cross-env NODE_ENV=development webpack -w",
"build-watch:server": "cross-env NODE_ENV=development babel -w ./src/server -d ./lib",
"build:client": "cross-env NODE_ENV=production webpack",
"build:server": "cross-env NODE_ENV=production babel ./src/server -d ./lib",
"build:styles": "gulp",
"dev": "run-p -l build-watch dev:start",
"dev:start": "cross-env NODE_ENV=development nodemon ./lib/index.js -w ./lib",
"dev:sync": "browser-sync start --proxy \"localhost:8080\" --files \"public/*\"",
"lint": "eslint --ext .js ./",
"prereload": "npm run build",
"reload": "cross-env NODE_ENV=production forever restart ./lib/index.js",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production forever start ./lib/index.js",
"stop": "forever stop ./lib/index.js"
},
"dependencies": {
"bootstrap": "^4.5.0",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"socket.io": "^2.4.0",
"socket.io-client": "^2.3.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.8.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"browser-sync": "^2.26.7",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-plugin-evelyn": "^3.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"eslint-plugin-unicorn": "^20.1.0",
"forever": "^3.0.0",
"gulp": "^4.0.2",
"gulp-group-css-media-queries": "^1.2.2",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}