-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "quick_and_dirty_server",
"version": "1.0.0",
"description": "general purpose server for quick api(s)",
"main": "index.js",
"author": "alitonia",
"license": "MIT",
"scripts": {
"start:dev": "yarn nodemon index.js",
"start": "node index.js",
"build": "cd client/pages/src/api_manual && yarn install && yarn build"
},
"dependencies": {
"axios": "^0.21.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cookie-parse": "^0.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.11.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"md5": "^2.3.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"rate-limiter-flexible": "^2.2.1",
"redis": "^3.1.0",
"upash": "^1.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.6"
},
"engines": {
"node": ">=12.x",
"yarn": "~1.22.x"
},
"cacheDirectories": [
"node_modules"
]
}