-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
{
"name": "voting-app",
"version": "1.0.0",
"description": "Full stack JavaScript app to create, view and vote on polls",
"main": "server.js",
"scripts": {
"start": "npm run build && node server.js",
"dev": "nodemon --ignore src/ --ignore public/ server.js ",
"build": "rimraf ./public && webpack --env.production --colors --progress",
"webpack": "webpack -d --watch",
"webpackdev": "webpack-dev-server --env.development --colors --progress",
"eslintfix": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cmccormack/voting-app.git"
},
"keywords": [
"Node.js",
"Node",
"Voting",
"JS",
"FreeCodeCamp",
"FCC"
],
"author": "Christopher McCormack https://mackville.net",
"license": "ISC",
"bugs": {
"url": "https://github.com/cmccormack/voting-app/issues"
},
"homepage": "https://github.com/cmccormack/voting-app#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"morgan": "^1.10.0",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"rimraf": "^2.7.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.1",
"webpack-dev-server": "^2.11.5"
},
"dependencies": {
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"chart.js": "^2.9.4",
"classnames": "^2.2.6",
"connect-mongo": "^2.0.3",
"cors": "^2.8.5",
"dotenv": "^4.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^4.3.0",
"file-loader": "^1.1.11",
"history": "^4.10.1",
"image-webpack-loader": "^3.6.0",
"mongoose": "^5.10.18",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^16.14.0",
"react-chartjs-2": "^2.11.1",
"react-dom": "^16.14.0",
"react-router-dom": "^4.3.1",
"react-scroll": "^1.8.1",
"serve-favicon": "^2.5.0",
"styled-components": "^2.4.1",
"webpack": "^3.12.0"
}
}