-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 KB
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
{
"name": "ev_server",
"version": "1.0.0",
"engines": {
"node": "10.16.0"
},
"description": "Electronic Voting Server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"local": "node ./src/index.js",
"dev": "NODE_ENV=developement nodemon -w src --exec \"babel-node src --presets env\"",
"neverd": "babel src -s -D -d dist --presets env",
"client-app": "java -jar %client_app%"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tpriime/ev_server.git"
},
"author": "Prime, MaryBlessing Umeh",
"license": "ISC",
"bugs": {
"url": "https://github.com/tpriime/ev_server/issues"
},
"homepage": "https://github.com/tpriime/ev_server#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.13.2",
"express": "^4.17.1",
"express-fileupload": "^0.4.0",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.4",
"nodemailer": "^4.6.8",
"uuid4": "^1.1.4",
"ws": "^7.1.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"nodemon": "^1.19.1"
}
}