-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "greencast",
"description": "Browser based podcast app - Hack Reactor Greenfield project",
"scripts": {
"start": "node server.js",
"test": "mocha spec",
"start-dev": "webpack -w | nodemon server.js",
"start-prod": "webpack -p | nodemon server.js"
},
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"bootstrap": "^4.0.0-alpha.2",
"css-loader": "^0.25.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"express-session": "^1.14.1",
"history": "^1.17.0",
"jquery": "^2.2.4",
"lodash": "^4.6.1",
"mongoose": "^4.6.4",
"morgan": "^1.7.0",
"node-podcast-parser": "^1.0.2",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"pug": "^2.0.0-beta6",
"react": "^0.14.7",
"react-audio-player": "^0.2.7",
"react-dom": "^0.14.7",
"request": "^2.75.0",
"style-loader": "^0.13.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"better-express-errors": "^1.0.2",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"sinon": "1.17.3",
"supertest": "^2.0.1",
"webpack": "^1.13.2"
},
"author": "newtonian-platypus",
"license": "ISC",
"bugs": {
"url": "https://github.com/newtonian-platypus/greenCast/issues"
},
"homepage": "https://github.com/newtonian-platypus/greenCast#readme"
}