-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.85 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "NODE_ENV=production PORT=80 node ./dist/server.js",
"dev": "PORT=3000 node ./src/server.js",
"build": "npm run clean && npm run build:typescript && npm run copy-assets",
"build:typescript": "tsc",
"copy-assets": "node copyAssets.js",
"clean": "node clean.js"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "7.3.10",
"@graphql-tools/load": "7.5.9",
"cookie-parser": "~1.4.4",
"date-fns": "2.28.0",
"debug": "~2.6.9",
"express": "4.17.3",
"express-graphql": "0.12.0",
"express-jwt": "6.1.1",
"express-paginate": "1.0.2",
"express-session": "1.17.2",
"express-validator": "6.14.0",
"graphql": "16.4.0",
"graphql-tools": "8.2.7",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"lodash": "^4.17.21",
"morgan": "~1.9.1",
"uuid": "8.3.2",
"bcryptjs": "2.4.3",
"lowdb": "1.0.0",
"passport": "0.6.0",
"passport-local": "1.0.0",
"shortid": "2.2.16",
"fuse.js": "6.5.3",
"jwks-rsa": "2.0.5",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"@faker-js/faker": "6.1.2",
"dinero.js": "1.9.1"
},
"devDependencies": {
"@types/bcryptjs": "2.4.2",
"@types/dinero.js": "1.9.0",
"@types/express": "4.17.2",
"@types/express-serve-static-core": "4.17.2",
"@types/express-paginate": "1.0.1",
"@types/express-session": "1.17.4",
"@types/lodash": "^4.14.183",
"@types/lowdb": "1.0.11",
"@types/passport": "1.0.7",
"@types/uuid": "8.3.4",
"@types/shortid": "0.0.29",
"@types/morgan": "1.9.3",
"@types/cors": "2.8.12",
"@types/shelljs": "0.8.8",
"cors": "2.8.5",
"shelljs": "0.8.4",
"typescript": "4.6.3"
},
"resolutions": {
"@types/express": "4.17.2",
"@types/express-serve-static-core": "4.17.2"
}
}