-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (76 loc) · 2.42 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
{
"name": "api",
"version": "1.0.02",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"postinstall": "yarn build",
"dev": "ts-node-dev --respawn --clear --transpile-only --ignore-watch node_modules src/server.ts",
"dev-debug": "ts-node-dev --debug --respawn --transpile-only --ignore-watch node_modules src/server.ts",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start": "node dist/server.js",
"test": "jest",
"dev-test": "jest --runInBand --watch",
"mongo-docker": "sudo docker run -p 27017:27017 -v ${PWD}/localdb/mongo:/data/db mongo"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/mongoose-unique-validator": "^1.0.5",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"aws-sdk": "^2.1090.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.3",
"express-formidable": "^1.2.0",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.5",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"validator": "^13.7.0",
"xss": "^1.0.11"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.15.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.16",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.4",
"mongodb-memory-server": "^8.4.0",
"supertest": "^6.2.2",
"ts-jest": "^27.0.5",
"ts-node-dev": "^1.1.1",
"typescript": "^4.4.3"
},
"jest": {
"testEnvironment": "node"
}
}