-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "web-soft-auth",
"author": {
"name": "DonVietnam",
"email": "don.vietnam.js@gmail.com"
},
"version": "1.2.0",
"description": "Authentication module for web-soft-server.",
"keywords": [
"auth",
"module",
"api",
"http",
"https",
"phone",
"web-soft-server",
"node.js"
],
"repository": {
"type": "git",
"url": "https://github.com/web-soft-llc/web-soft-auth"
},
"bugs": {
"url": "https://github.com/web-soft-llc/web-soft-auth/issues",
"email": "don.vietnam.js@gmail.com"
},
"homepage": "https://github.com/web-soft-llc/web-soft-auth",
"main": "index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.js",
"index.d.ts"
],
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --signal SIGTERM --exec \"node src/index.js\"",
"docker": "docker volume create pgdata && docker compose up -d",
"docker-dev": "npm run docker && npm run dev",
"lint": "eslint --ignore-path .eslintignore .",
"fix": "eslint --fix --ignore-path .eslintignore .",
"unit": "jest test/unit -i --passWithNoTests",
"integration": "cross-env PGHOST=localhost PGUSER=test_user PGDATABASE=test_db PGPASSWORD=test_password PGPORT=5432 HOST=localhost PORT=8000 jest test/integration -i --passWithNoTests",
"test": "npm run unit && npm run integration",
"prettier": "prettier --write --ignore-path .prettierignore ."
},
"engines": {
"node": ">=16"
},
"dependencies": {},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"nodemon": "^2.0.4",
"prettier": "2.5.1",
"pre-commit": "^1.2.2",
"web-soft-server": "^2.0.2"
},
"peerDependencies": {
"web-soft-server": "^2.0.2"
},
"pre-commit": [
"prettier",
"lint",
"unit"
]
}