-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "proyecto",
"version": "1.0.0",
"description": "TFG UGR - App registro entrenamiento",
"license": "",
"author": "Antonio de la Vega",
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/antoniovj1/tfg_gymapp/"
},
"scripts": {
"build": "export NODE_ENV='production' && webpack --config ./webpack.config.js --display-error-details --colors",
"dev-server": "nodemon --config nodemon.json server.js",
"postinstall": "export NODE_ENV='production' && webpack --config ./webpack.config.js --display-error-details --colors",
"start": "export NODE_ENV='production' && node server.js",
"test": "export NODE_ENV='test' && export SECRET='secret' && jest --verbose --forceExit --runInBand --silent",
"test-cov": "export NODE_ENV='test' && export SECRET='secret' && jest --verbose --coverage --forceExit --runInBand --silent",
"precommit": "lint-staged"
},
"dependencies": {
"auth0-lock": "^11.4.0",
"axios": "^0.18.0",
"babel-loader": "^7.1.4",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.4.6",
"body-parser": "^1.14.1",
"capitalize": "^1.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"chart.js": "^2.7.2",
"chartjs-plugin-zoom": "^0.6.3",
"classnames": "^2.2.5",
"cors": "^2.8.1",
"date-fns": "^2.0.0-alpha.9",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"google-palette": "^1.1.0",
"history": "^4.7.2",
"http-shutdown": "^1.2.0",
"ip": "^1.1.4",
"jsonwebtoken": "^8.2.0",
"jwt-decode": "^2.1.0",
"lodash": "^4.17.10",
"material-ui": "^1.0.0-beta.38",
"material-ui-icons": "^1.0.0-beta.17",
"moment": "^2.22.1",
"mongoose": "^5.0.10",
"morgan": "^1.6.1",
"nodemon": "^1.17.5",
"npm": "^6.1.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-chartjs-2": "^2.7.2",
"react-datepicker": "^1.4.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-tap-event-plugin": "^3.0.3",
"redux": "^3.6.0",
"redux-form": "^7.3.0",
"redux-form-material-ui": "^5.0.0-beta.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.1.0",
"webpack": "^4.11.0",
"webpack-cli": "^2.0.12",
"webpack-dev-middleware": "^3.0.1",
"webpack-hot-middleware": "^2.21.2",
"winston": "^2.4.1",
"winston-papertrail": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.15.0-rc.12",
"jest": "^22.4.2",
"lint-staged": "^7.1.3",
"prettier": "^1.11.1",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.21.0"
},
"engines": {
"node": "10"
},
"lint-staged": {
"*.js": [
"prettier --print-width=110 --single-quote --write"
]
}
}