-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 4.49 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
112
113
114
115
116
117
118
119
{
"name": "preeclampsia-risk-estimator",
"version": "1.0.0",
"description": "Preeclampsia risk estimation application",
"main": "server.js",
"scripts": {
"start": "npm run build && node dist-node/server.js",
"rstart": "npm run rlint && npm start --prefix preeclampsia-react-app",
"nstart": "NODE_ENV=development npm run nlint && npm run node-start -s",
"build": "npm run react-build && npm run node-build",
"react-clean": "rimraf dist-react",
"react-build": "npm run react-clean && npm run rlint && npm run build --prefix preeclampsia-react-app",
"node-start": "npm run node-build && npm run node-watch",
"node-clean": "rimraf dist-node",
"node-build": "npm run node-clean && npm run node-build-ts",
"node-build-ts": "tsc --p preeclampsia-node-app/tsconfig.json && npm run node-copy-assets",
"node-watch": "concurrently -k -p \"[{name}]\" -n \"Type,Node\" -c \"cyan.bold,green.bold\" \"npm run node-watch-ts\" \"nodemon dist-node/server.js -q\" --kill-others",
"node-watch-ts": "tsc -w --p preeclampsia-node-app/tsconfig.json",
"node-copy-assets": "npm run cp-assets && npm run cp-templates && npm run cp-scripts",
"cp-assets": "cpx preeclampsia-node-app/src/assets/**/*.* \"dist-node/assets\"",
"cp-templates": "cpx \"preeclampsia-node-app/src/templates/**/*.*\" \"dist-node/templates\"",
"cp-scripts": "cpx \"preeclampsia-node-app/src/scripts/**\" \"dist-node/scripts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint preeclampsia-node-app/src preeclampsia-react-app/src --ext .ts,.tsx,.js,.jsx",
"rlint": "./node_modules/.bin/eslint preeclampsia-react-app/src --ext .js,.jsx,.ts,.tsx --fix",
"nlint": "./node_modules/.bin/eslint preeclampsia-node-app/src --ext .ts,.js",
"populate-db": "node preeclampsia-node-app/src/scripts/populateDatabase.js",
"train-model": "python preeclampsia-node-app/src/scripts/train_risk_model.py $POPULATE_DB_DATA_LOCATION && exit 0"
},
"keywords": [
"preeclampsia",
"risk",
"estimator",
"health",
"women",
"pregnancy"
],
"author": "Marina Rupe",
"license": "ISC",
"_moduleAliases": {
"assets": "./dist-node/assets",
"configuration": "./dist-node/configuration",
"controllers": "./dist-node/controllers",
"constants": "./dist-node/constants",
"dataTransferObjects": "./dist-node/dataTransferObjects",
"enums": "./dist-node/enums",
"middlewares": "./dist-node/middlewares",
"models": "./dist-node/models",
"routes": "./dist-node/routes",
"scripts": "./dist-node/scripts",
"services": "./dist-node/services",
"templates": "./dist-node/templates",
"utils": "./dist-node/utils",
"validators": "./dist-node/validators"
},
"dependencies": {
"axios": "~0.18.0",
"bcryptjs": "~2.4.3",
"body-parser": "~1.18.3",
"chart.js": "~2.8.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.4",
"express-async-wrap": "~1.0.0",
"handlebars": "~4.1.1",
"history": "~4.7.2",
"http-errors": "~1.6.2",
"jsonwebtoken": "~8.5.1",
"material-icons": "~0.2.3",
"module-alias": "~2.2.0",
"moment": "~2.23.0",
"morgan": "~1.9.0",
"node-sass-chokidar": "~1.3.4",
"npm-run-all": "~4.1.5",
"passport": "~0.4.0",
"passport-jwt": "~4.0.0",
"passport-local": "~1.0.0",
"pg": "~7.8.0",
"pg-hstore": "~2.3.2",
"puppeteer": "~1.17.0",
"react": "~16.6.3",
"react-bootstrap": "~0.32.4",
"react-bootstrap-dialog": "~0.11.0",
"react-chartjs-2": "~2.7.6",
"react-datepicker": "~2.9.6",
"react-dom": "~16.6.3",
"react-redux": "~6.0.0",
"react-router-dom": "~4.3.1",
"react-scripts": "2.1.1",
"react-table": "~6.9.2",
"redux": "~4.0.1",
"redux-form": "~8.2.0",
"redux-thunk": "~2.3.0",
"restify-errors": "~6.1.1",
"sequelize": "^5.15.1"
},
"devDependencies": {
"@types/bcrypt": "~3.0.0",
"@types/express": "~4.17.0",
"@types/node": "~12.0.7",
"@types/passport": "~0.4.7",
"@types/puppeteer": "~1.12.4",
"@typescript-eslint/eslint-plugin": "~1.4.2",
"@typescript-eslint/parser": "~1.4.2",
"concurrently": "~4.1.0",
"cpx": "~1.5.0",
"create-react-app": "~2.1.1",
"csv-parser": "~2.2.0",
"eslint": "5.6.0",
"eslint-plugin-jest": "~22.1.2",
"eslint-plugin-react": "~7.11.1",
"nodemon": "~1.18.9",
"redux-devtools": "~3.4.2",
"rimraf": "~2.6.3",
"sequelize-cli": "^5.5.0",
"tslint": "~5.17.0",
"typescript": "~3.5.1"
}
}