-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 2.32 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
{
"name": "sunmait.boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"precommit": "npm run lint",
"build": "tsc",
"start": "nodemon src/API/app.ts --inspect",
"test": "jest",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"seed": "cd ./migrations && ../node_modules/.bin/sequelize db:seed:all",
"seed:undo": "cd ./migrations && ../node_modules/.bin/sequelize db:seed:undo:all",
"migrate": "cd ./migrations && ../node_modules/.bin/sequelize db:migrate",
"migrate:undo": "cd ./migrations && ../node_modules/.bin/sequelize db:migrate:undo:all",
"migrate-and-seed": "npm run migrate && npm run seed"
},
"description": "Sunmait.Boilerplate",
"author": {
"name": "Pavel D"
},
"main": "./API/app.js",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-flow": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/config": "0.0.40",
"@types/crypto-js": "^3.1.38",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.0.50",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^7.2.6",
"@types/mime": "^1.3.1",
"@types/moment": "^2.13.0",
"@types/node": "^12.20.36",
"@types/nodemailer": "^4.3.4",
"@types/password-hash": "^1.2.20",
"@types/serve-static": "^1.7.32",
"@types/validator": "^13.6.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^0.14.3",
"jest": "^27.3.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.3",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"config": "^3.3.6",
"crypto-js": "^3.1.9-1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.2.0",
"moment": "^2.21.0",
"nodemailer": "^4.7.0",
"password-hash": "^1.2.2",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"prettier": "^2.4.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.8.0",
"sequelize-cli": "^6.2.0"
}
}