-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.47 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
{
"name": "task",
"version": "1.0.0",
"description": "Vocab app",
"main": "server.js",
"dependencies": {
"accepts": "^1.3.7",
"array-flatten": "^1.1.1",
"body-parser": "^1.19.0",
"bytes": "^3.1.0",
"concurrently": "^7.6.0",
"content-disposition": "^0.5.3",
"content-type": "^1.0.4",
"cookie": "^0.4.0",
"cookie-signature": "^1.0.6",
"cors": "^2.8.5",
"debug": "^2.6.9",
"depd": "^1.1.2",
"destroy": "^1.0.4",
"dotenv": "^16.0.3",
"ee-first": "^1.1.1",
"ejs": "^3.1.5",
"encodeurl": "^1.0.2",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"finalhandler": "^1.1.2",
"forwarded": "^0.1.2",
"fresh": "^0.5.2",
"graphql": "^15.3.0",
"http-errors": "^1.7.2",
"iconv-lite": "^0.4.24",
"inherits": "^2.0.3",
"ipaddr.js": "^1.9.1",
"media-typer": "^0.3.0",
"merge-descriptors": "^1.0.1",
"methods": "^1.1.2",
"mime": "^1.6.0",
"mime-db": "^1.44.0",
"mime-types": "^2.1.27",
"mongodb": "^3.6.2",
"mongoose": "^5.10.5",
"ms": "^2.0.0",
"negotiator": "^0.6.2",
"on-finished": "^2.3.0",
"parseurl": "^1.3.3",
"path-to-regexp": "^0.1.7",
"proxy-addr": "^2.0.6",
"qs": "^6.7.0",
"range-parser": "^1.2.1",
"raw-body": "^2.4.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"safe-buffer": "^5.1.2",
"safer-buffer": "^2.1.2",
"send": "^0.17.1",
"serve-static": "^1.14.1",
"setprototypeof": "^1.1.1",
"statuses": "^1.5.0",
"toidentifier": "^1.0.0",
"type-is": "^1.6.18",
"unpipe": "^1.0.0",
"utils-merge": "^1.0.1",
"vary": "^1.1.2"
},
"devDependencies": {},
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Tarang Singhal",
"license": "ISC",
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
}
}