-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.34 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
{
"name": "nodetsfam",
"version": "1.0.0",
"description": "NodeTsFam NodeJs Framework",
"author": "emmanuelonah",
"main": "index.js",
"license": "MIT",
"engines": {
"node": ">=10"
},
"scripts": {
"i": "yarn",
"start": "yarn run build && node ./build/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "yarn run clean && tsc",
"build:dev": "tsc --watch",
"prod": "pm2 start ./build/index.js -l logs.txt -i max",
"prod:reload": "pm2 reload index",
"test": "jest --config=jest.config.js --detectOpenHandles --watch",
"test:watch": "yarn run test --watch",
"test:cv": "yarn run test --coverage --watchAll=false",
"clean": "rimraf ./build",
"lint": "npx eslint . --ext .ts",
"format": "prettier --write './src/**/*.ts'",
"pre:commit": "yarn run lint",
"pre:push": "yarn run test --watchAll=false && yarn run build",
"local:ci": "jest --watchAll=false && yarn run test:cv && yarn run build",
"prepare": "husky install"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.4",
"@types/morgan": "^1.9.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"colors": "^1.4.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"argon2": "^0.31.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"env-var": "^7.4.1",
"express": "^4.18.2",
"express-rate-limit": "^7.0.0",
"helmet": "^7.0.0",
"mongoose": "^7.5.0",
"morgan": "^1.10.0",
"sequelize": "^6.35.2",
"sqlite3": "^5.1.7"
}
}