-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.58 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": "furniture2",
"version": "0.2.0",
"private": true,
"engines": {
"node": ">= 14.0.0"
},
"scripts": {
"start": "node ./bin/www",
"start:watch": "nodemon ./bin/www",
"lint": "eslint . --cache --ext .js",
"migrate": "node-pg-migrate"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"async": "^3.2.2",
"body-parser": "^1.19.0",
"config": "^3.2.4",
"connect-pg-simple": "^7.0.0",
"connect-redis": "^4.0.0",
"cookie-parser": "^1.4.4",
"csurf": "^1.10.0",
"csv": "^5.3.1",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.0",
"express-flash": "0.0.2",
"express-promise-router": "^4.1.0",
"express-session": "^1.17.0",
"graphql-request": "^3.5.0",
"http-errors": "~1.6.2",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"node-pg-migrate": "^6.0.0",
"oauth": "^0.9.15",
"parse-database-url": "^0.3.0",
"passport": "^0.4.1",
"passport-oauth2": "^1.5.0",
"permission": "^1.1.0",
"pg": "^8.7.1",
"pluralize": "^7.0.0",
"pug": "^3.0.0",
"redis": "^3.0.0",
"underscore": "^1.9.1",
"url": "^0.11.0",
"validator": "^10.11.0"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^2.2.0",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"espree": "^9.0.0",
"graphql": "^15.6.0",
"nodemon": "^2.0.13"
},
"nodemonConfig": {
"watch": [
".env",
"*.*"
],
"ext": "js,mjs,json,pug"
}
}