-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.3 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
{
"name": "sportstream-linode",
"version": "1.0.0",
"description": "The SportStream MVP",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"start:watch": "tsc & concurrently --kill-others \"npm run build:nodemon\" \"npm run build:webpack\" \"tsc -w\"",
"start:dev": "tsc & npm run build:nodemon & npm run build:webpack",
"start:https": "npm run build:prod & env-cmd https_production node server/server.js",
"start:http": " npm run build:prod & env-cmd http_production node server/server.js",
"build:dev": "webpack",
"build:nodemon": "env-cmd development nodemon server/server.js -e js,css,html,hbs",
"build:webpack": "webpack --watch",
"build:prod": "webpack -p --env production",
"test": "jest --config=jest.config.json",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobbyB97/JavascriptReactBoilerplate.git"
},
"keywords": [
"javascript",
"react",
"redux",
"router",
"node.js",
"node",
"npm",
"webpack",
"express"
],
"author": "Robby Bergers",
"license": "ISC",
"bugs": {
"url": "https://github.com/RobbyB97/sportstream-linode/issues"
},
"homepage": "https://github.com/RobbyB97/sportstream-linode#readme",
"dependencies": {
"axios": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.2",
"chalk": "^2.4.2",
"child_process": "^1.0.2",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"css-loader": "^0.28.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"extract-text-webpack-plugin": "^3.0.0",
"mongoose": "^5.9.12",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-media-server": "^2.2.4",
"nodemon": "^1.19.1",
"normalize.css": "^7.0.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"prop-types": "^15.7.2",
"raf": "^3.3.2",
"react": "^16.13.1",
"react-dom": "^16.0.0",
"react-flv-player": "^1.0.9",
"react-media": "^1.10.0",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^2.1.0",
"rtmp-server": "^0.2.0",
"sass-loader": "^6.0.6",
"shelljs": "^0.8.4",
"shortid": "^2.2.16",
"style-loader": "^0.18.2",
"uuid": "^3.1.0",
"validator": "^11.0.0",
"webpack": "^3.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/mongoose": "^5.10.1",
"@types/node": "^14.14.9",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"concurrently": "^4.1.2",
"env-cmd": "^8.0.2",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"jest": "^20.0.4",
"jest-localstorage-mock": "^2.4.6",
"node-sass": "^4.14.1",
"parallelshell": "^3.0.1",
"react-test-renderer": "^16.0.0",
"sass": "^1.26.11",
"ts-node": "^9.0.0",
"typescript": "^4.1.3",
"webpack-dev-server": "^3.8.0"
}
}