-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
{
"name": "mth-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest",
"kill-linux": "killall -9 node",
"start": "nodemon ./server/app.js",
"kill-window": "Taskkill /IM node.exe /F",
"kill": "sudo kill $(sudo lsof -t -i:3009)",
"seed": "node ./server/v1/configs/database/seeds/run-dev-seed.js",
"viewdb": "psql -U postgres -f ./server/v1/configs/database/view-db.sql > ./server/v1/configs/database/view-bd.txt",
"setup-db": "psql -U postgres -f ./server/v1/configs/database/setup-dbs.sql > ./server/v1/configs/database/example.txt",
"viewtestdb": "psql -U postgres -f ./server/v1/configs/database/view-dbtest.sql > ./server/v1/configs/database/viewtest-bd.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaktec/mth-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zaktec/mth-backend/issues"
},
"homepage": "https://github.com/zaktec/mth-backend#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"csv-parse": "^5.5.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-validator": "^6.14.3",
"jest-sorted": "^1.0.14",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.0",
"pg": "^8.7.3",
"pg-format": "^1.0.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"expect-more-jest": "^5.4.1",
"jest": "^28.1.1",
"jest-extended": "^3.0.2",
"nodemon": "^2.0.16",
"supertest": "^6.2.3"
},
"jest": {
"setupFilesAfterEnv": [
"jest-sorted",
"jest-extended/all"
]
}
}