-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.57 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": "moh",
"version": "1.0.0",
"description": "System for Ministry of Health For keeping an eye on all Gaza Strip Pharmacies",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./server/index.ts",
"start": "cross-env NODE_ENV=production node ./dist/index.js",
"test": "cross-env NODE_ENV=test jest server/test --detectOpenHandles --runInBand",
"lint": "eslint --ext .ts server/ --fix && cd client && npm run lint",
"buildDb": "cross-env NODE_ENV=development ts-node server/database/config/buildDb.ts",
"buildSeeds": "cross-env NODE_ENV=development ts-node server/database/seeds/buildSeeds.ts",
"buildDbP": "cross-env NODE_ENV=production ts-node server/database/config/buildDb.ts",
"buildSeedsP": "cross-env NODE_ENV=production ts-node server/database/seeds/buildSeeds.ts",
"add": "git add .",
"build": "tsc",
"heroku-postbuild": "cd client && npm i && npm run build && cd .. & npm i && npm run build"
},
"pre-commit": [
"lint",
"add",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CA-G12/MoH.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CA-G12/MoH/issues"
},
"homepage": "https://github.com/CA-G12/MoH#readme",
"devDependencies": {
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"env2": "^2.2.2",
"express": "^4.18.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"prettier": "^2.7.1",
"sequelize": "^6.19.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^17.0.25",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"concurrently": "^7.4.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.2.0",
"nodemon": "^2.0.15",
"pre-commit": "^1.2.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.7.0",
"typescript": "^4.8.4"
}
}