-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.95 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
{
"name": "webglue-api",
"version": "1.0.0-alpha",
"description": "A RESTful API for webglue.me",
"scripts": {
"build": "tsc",
"dev": "yarn run start && tsc -w --incremental",
"dev:nodemon": "nodemon -e ts --exec \"tsc --incremental && node -r dotenv/config build/src/main.js\"",
"dev:ts-node": "nodemon -r dotenv/config --exec ts-node -r tsconfig-paths/register ./src/main.ts",
"start": "pm2 start ./pm2.config.js",
"stop": "pm2 stop ./pm2.config.js",
"restart": "pm2 restart ./pm2.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/payw-org/webglue-api"
},
"author": "payw",
"license": "MIT",
"bugs": {
"url": "https://github.com/paywteam/webglue-api/issues"
},
"homepage": "https://github.com/paywteam/webglue-api#readme",
"_moduleAliases": {
"@": "build/src/app",
"@@": "build/src"
},
"dependencies": {
"body-parser": "^1.19.0",
"charset": "^1.0.1",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.16.2",
"express-validator": "^6.2.0",
"fs-extra": "^8.1.0",
"helmet": "^3.21.1",
"iconv-lite": "^0.5.0",
"jsdom": "^15.1.1",
"lru-cache": "^5.1.1",
"moment": "^2.24.0",
"mongoose": "^5.7.3",
"nanoid": "^2.1.3",
"node-schedule": "^1.3.2",
"nodemailer": "^6.3.1",
"p-limit": "^2.2.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"puppeteer": "^2.0.0",
"request": "^2.88.0",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/charset": "^1.0.1",
"@types/connect-mongo": "^0.0.44",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/fs-extra": "^8.0.1",
"@types/helmet": "^0.0.44",
"@types/jsdom": "^12.2.4",
"@types/lru-cache": "^5.1.0",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.5.18",
"@types/nanoid": "^2.1.0",
"@types/node-schedule": "^1.2.4",
"@types/nodemailer": "^6.2.2",
"@types/passport": "^1.0.1",
"@types/passport-google-oauth20": "^2.0.2",
"@types/puppeteer": "^2.0.0",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"app-root-path": "^2.2.1",
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"module-alias": "^2.2.2",
"prettier": "^1.18.2",
"request-promise-native": "^1.0.7",
"saslprep": "^1.0.3",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.6.3"
}
}