-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "node-typescript-boilerplate",
"version": "1.0.0",
"description": "Node typescript boilerplate",
"main": "index.ts",
"scripts": {
"migration:generate": "sequelize-cli migration:generate --name ",
"migrate": "sequelize-cli db:migrate",
"migrate:undo": "sequelize-cli db:migrate:undo",
"migrate:undo:all": "sequelize-cli db:migrate:undo:all",
"start:debug": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules ./src/index.ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"tsc:build": "tsc --build -i",
"tsc:build:watch": "tsc --build --verbose --incremental --watch",
"tsc:debug": "npm run tsc:build && nodemon ./dist/index.js"
},
"keywords": [
"node",
"typescript",
"boilerplate",
"api"
],
"author": "Iânice Lanziloti",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@types/restify": "^8.5.4",
"@types/sequelize": "^4.28.11",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"prettier": "^2.6.2",
"sequelize-cli": "^6.4.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"dependencies": {
"-": "^0.0.1",
"@types/mocha": "^9.1.1",
"D": "^1.0.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"fastify": "^3.28.0",
"inversify": "^6.0.1",
"mocha": "^9.2.2",
"reflect-metadata": "^0.1.13",
"restify": "^8.6.1",
"sequelize": "^6.19.0",
"sequelize-typescript": "^2.1.3",
"sinon": "^13.0.2"
}
}