-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.95 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.95 KB
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
{
"name": "voting-app",
"version": "0.0.7",
"description": "A freeCodeCamp Voting App Project",
"author": "Rafał Wawrowski",
"main": "server.js",
"scripts": {
"start": "server.js",
"dev": "NODE_ENV=development node public/app.bundle.js",
"dev:build": "webpack --watch",
"test": "NODE_ENV=test mocha --require @babel/polyfill --require @babel/register --exit"
},
"dependencies": {
"express": "^4.16.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"redux": "^4.0.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"helmet": "^3.13.0",
"mongoose": "^5.3.1",
"mongoose-unique-validator": "^2.0.2",
"connect-mongo": "^2.0.1",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"passport": "^0.4.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"express-session": "^1.15.6",
"bcrypt": "^3.0.1",
"axios": "^0.18.0",
"redux-thunk": "^2.3.0",
"react-addons-css-transition-group": "^15.6.2",
"randomcolor": "^0.5.3",
"recharts": "^1.3.1",
"sweetalert": "^2.1.0"
},
"devDependencies": {
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"css-loader": "^1.0.0",
"style-loader": "^0.23.0",
"sass-loader": "^7.1.0",
"node-sass": "^4.9.3",
"mini-css-extract-plugin": "^0.4.2",
"babel-loader": "^8.0.2",
"@babel/core": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"morgan": "^1.9.1",
"mocha": "^5.2.0",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"portfinder": "^1.0.17",
"dotenv": "^6.0.0"
},
"engines": {
"node": "8.x"
},
"repository": {
"url": "https://github.com/wawraf/voting-app"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"freecodecamp"
]
}