-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "elearning-backend",
"version": "1.0.0",
"description": "",
"exports": "./dist/server.js",
"type": "module",
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/server.js",
"start:watch": "nodemon",
"build": "npm run build-ts && npm run copy-files",
"build-ts": "tsc",
"copy-files": "copyfiles -u 1 src/**/*.py dist/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.67.0",
"@aws-sdk/s3-request-presigner": "^3.67.0",
"@axinom/mosaic-id-link-be": "^0.6.3",
"@types/node-fetch": "^2.6.1",
"auto-bind": "^4.0.0",
"aws-sdk": "^2.1114.0",
"body-parser": "^1.19.1",
"cognito-express": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"mongoose": "^6.2.1",
"mongoose-autopopulate": "^0.16.1",
"node-fetch": "^3.2.3",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.17",
"copyfiles": "^2.4.1",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}