forked from OneCommunityGlobal/HGNRest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.93 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
{
"name": "hgnrest",
"version": "1.0.0",
"description": "This module is the REST module built on NodeJS to support MongoDB activities, Since EmberData has no direct adapters for MongoDB. This module will later be intergrated with EmberJS HGN project to maintain singularity.",
"main": "restapp",
"scripts": {
"test": "test",
"lint": "eslint --fix ./src",
"build": "babel src -d dist",
"buildw": "babel src -d dist --watch",
"start": "node dist/server.js",
"serve": "node src/server.js"
},
"pre-commit": [
"lint"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "lint"
},
"author": "AK",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@types/express": "^4.17.6",
"@types/node": "^8.10.61",
"babel-eslint": "^10.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.21.2",
"lint-staged": "^13.0.3",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.10.2",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-async-to-generator": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@sentry/node": "^5.17.0",
"async-exit-hook": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"cron": "^1.8.2",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"googleapis": "^100.0.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.33",
"mongodb": "^3.7.3",
"mongoose": "^5.13.14",
"mongoose-validator": "^2.1.0",
"node-cache": "^5.1.2",
"node-datetime": "^2.0.3",
"nodemailer": "^6.4.16",
"redis": "^4.2.0",
"uuid": "^3.4.0",
"ws": "^8.8.1"
}
}