-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.21 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
{
"name": "coupons",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"ejs": "^2.5.7",
"eslint": "^4.18.2",
"express": "^4.16.2",
"express-session": "^1.15.6",
"formik": "^0.11.11",
"husky": "^0.14.3",
"lint-staged": "^6.1.1",
"material-ui": "^0.20.0",
"mdi-react": "^2.1.19",
"metafetch": "^1.7.3",
"moment": "^2.20.1",
"mongodb": "^3.0.2",
"mongoose": "^5.0.6",
"mongoose-autopopulate": "^0.6.1",
"mongoose-unique-validator": "^2.0.0",
"morgan": "^1.9.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-bootstrap": "^0.32.1",
"react-datepicker": "^1.4.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^5.0.0",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.79.0",
"url-parse": "^1.3.0",
"yup": "^0.24.1"
},
"scripts": {
"startdev": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "nodemon api/app.js",
"database": "mongod --dbpath=database",
"development": "concurrently \"npm run database\" \"npm run server\" \"npm start\" ",
"production": "set NODE_ENV=production && concurrently \"npm run build\" \"npm run database\" \"npm run server\" ",
"heroku-postbuild": "react-scripts build",
"start": "node api/app.js"
},
"devDependencies": {
"chance": "^1.0.13",
"concurrently": "^3.5.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"faker": "^4.1.0",
"nodemon": "^1.17.1",
"stylelint-config-recommended": "^2.1.0"
}
}