-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.18 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
{
"name": "express.boilerplate",
"version": "1.0.0",
"description": "An express API boilerplate",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts --fix",
"lint:migrations": "eslint src/database/migrations --ext .ts --fix",
"postinstall": "husky install",
"start": "ts-node src/index.ts",
"start:dev": "nodemon src/index.ts",
"test": "NODE_ENV=test jest --forceExit",
"test:cov": "NODE_ENV=test jest --coverage --forceExit",
"test:watch": "NODE_ENV=test jest --watch",
"typeorm": "typeorm-ts-node-commonjs -d src/database/data-source.ts",
"migration:generate": "npm run typeorm -- migration:generate ./src/database/migrations/$npm_config_name && npm run lint:migrations",
"migration:run": "npm run typeorm -- migration:run",
"migration:revert": "npm run typeorm -- migration:revert"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsalazarv/express.boilerplate.git"
},
"keywords": [
"boilerplate",
"express",
"javascript"
],
"author": "Juan Salazar",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsalazarv/express.boilerplate/issues"
},
"homepage": "https://github.com/jsalazarv/express.boilerplate#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.1",
"mysql": "^2.18.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.3.10"
},
"devDependencies": {
"@jest-mock/express": "^2.0.1",
"@types/express": "^4.17.14",
"@types/jest": "^29.1.1",
"@types/node": "^18.7.23",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"sqlite3": "^5.1.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}