forked from risevest/backend-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.13 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
{
"name": "backend-test",
"version": "1.0.0",
"description": "An API that serves as an cloud backup system",
"main": "server.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "yarn run build && node dist/server.js",
"dev": "nodemon",
"format": "prettier --config .prettierrc src --write",
"lint": "eslint . --ext .ts",
"test": "mocha dist --forceExit --timeout 50000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lawal-create/backend-test.git"
},
"author": "Lawal Hakeem",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lawal-create/backend-test/issues"
},
"homepage": "https://github.com/Lawal-create/backend-test#readme",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/sequelize": "^4.28.11",
"@types/validator": "^13.7.1",
"bcryptjs": "^2.4.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"fs": "^0.0.1-security",
"helmet": "^5.0.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.2.0",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"node-cron": "^3.0.0",
"nodemon": "^2.0.15",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sequelize": "^6.16.1",
"sequelize-cli": "^6.4.1",
"typescript": "^4.5.5",
"winston": "^3.5.1"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.2.21",
"@types/chai-http": "^4.2.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.1.0",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.10",
"@types/node": "^16.9.1",
"@types/node-cron": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"ts-node": "^10.5.0"
}
}