-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "nodebackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"test": "nodemon . --ext ts --exec \"mocha -r ts-node/register src/tests/*.test.ts\"",
"start": "env-cmd -f prod.env node dist/server.js",
"build": "tsc -p .",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashrash/nodeBackend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashrash/nodeBackend/issues"
},
"homepage": "https://github.com/ashrash/nodeBackend#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.35",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"class-transformer": "^0.5.1",
"concurrently": "^7.2.0",
"eslint": "^8.25.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"supertest": "^6.2.3",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/whatwg-url": "^11.0.0",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"ramda": "^0.28.0",
"sequelize": "^6.25.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.1.6",
"whatwg-url": "^5.0.0",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
}
}