-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.68 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
82
{
"name": "ts-node-boilerplate",
"version": "1.0.0",
"description": "TypeScript Nodejs BoilerPlate",
"main": "src/main/server.ts",
"author": "williamkoller <williamkoller404@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/main/server.ts",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"start:dev": "nodemon -r tsconfig-paths/register src/main/server.ts",
"start:docker": "yarn build && docker-compose down && docker-compose up",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watchAll -c jest-unit-config.js",
"test:integration": "npm test -- --watchAll -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"typeorm": "typeorm-ts-node-commonjs"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.19.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.0.3",
"express": "^4.17.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongodb": "^5.3.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.6.2",
"typeorm": "0.3.16"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/mongodb": "^4.0.7",
"@types/node": "^16.11.10",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"sucrase": "^3.32.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "10.7.0",
"tsconfig-paths": "^4.2.0",
"typescript": "4.5.2"
},
"_moduleAliases": {
"@": "dist"
},
"engines": {
"node": "18"
}
}