-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "schorr-eats",
"version": "0.1.0",
"description": "Resturant tally-keeping app",
"main": "app/server.js",
"author": "Andrew Schorr",
"dependencies": {
"basic-auth": "~1.0.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.4.3",
"bootstrap": "^4.1.1",
"browserify": "^14.3.0",
"connect-flash": "~0.1.1",
"cookie-parser": "~1.3.4",
"dotenv": "^5.0.1",
"ejs": "~2.5.5",
"express": "~4.6.1",
"express-session": "~1.10.4",
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"method-override": "~2.1.1",
"moment": "^2.22.1",
"mongoose": "~4.9.3",
"morgan": "~1.1.1",
"multer": "^1.3.0",
"passport": "^0.2.2",
"passport-http": "~0.2.2",
"passport-local": "~1.0.0",
"pikaday": "^1.5.1",
"popper.js": "^1.14.3",
"react": "^16.3.2",
"react-datepicker": "^1.4.1",
"react-dom": "^16.3.2",
"react-images": "^0.5.17",
"reactstrap": "^6.0.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"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-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "4.9.0",
"nodemon": "^1.17.4",
"prettier": "1.12.1",
"prop-types": "^15.6.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"watchify": "~3.1.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"yargs": "~4.2.0"
},
"engines": {
"node": "6.9.3"
},
"scripts": {
"dev": "webpack --watch --mode development",
"build": "webpack --mode production",
"start": "nodemon app/server.js"
}
}