-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
78
79
80
81
{
"name": "progress-v2-takiacademy",
"version": "1.0.2",
"description": "The architecture for nodejs backend application. It is build on top of expressjs using typescript.",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"start:dev": "ts-node-dev -r dotenv/config src/server.ts",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"seed": "ts-node-dev -r dotenv/config src/helpers/seeder.ts"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/takiacademy/progress-v2"
},
"author": "TakiAcademy",
"license": "Apache-2.0",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/bcryptjs": "^2.4.2",
"@types/mongoose": "^5.11.97",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"mongoose": "^6.7.1",
"mongoose-paginate-ts": "^1.2.7",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.6.0",
"tedis": "^0.1.12",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4",
"uuid4": "^2.0.3",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/hapi__joi": "^17.1.6",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.163",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.6",
"@types/supertest": "^2.0.10",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid4": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"colors": "^1.4.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.12.1",
"jest": "^26.6.1",
"nodemon": "^2.0.6",
"supertest": "^6.0.0",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.0"
}
}