This repository has been archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "team-management",
"version": "1.0.0",
"description": "Team Management API",
"author": "Lakmal Dharmasena",
"private": true,
"scripts": {
"start": "yarn dev",
"build:prod": "webpack --mode production --config production.webpack.config.js",
"build:dev": "webpack --mode development --config development.webpack.config.js",
"dev": "touch build/main.js && npm-run-all -p watch nodemon",
"watch": "yarn build:dev --watch",
"nodemon": "nodemon --inspect build/main.js",
"lint": "eslint --ignore-path .gitignore --ignore-path .eslintignore",
"test": "jest --maxWorkers 4 --detectOpenHandles --no-watchman --forceExit --config jest.config.js",
"test:watch": "yarn test --watch",
"migrate:latest": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"migrate:rollback": "knex migrate:rollback"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "yarn install"
}
},
"lint-staged": {
"*.js": [
"yarn lint --color --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-recommended": "^4.1.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"http-status-codes": "^2.1.4",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.13",
"knex-db-manager": "^0.7.0",
"morgan": "^1.10.0",
"pg": "^8.5.1",
"pg-escape": "^0.2.0",
"supertest": "^6.0.1",
"uuid": "^8.3.2"
}
}