-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.22 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
{
"name": "keylight-backend",
"version": "1.0.0",
"description": "Modern ESM Node.js/Express backend for the Keylight intake form system.",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"migrate": "node database/migrate.js",
"seed": "node database/seed.js",
"test": "npm run test:unit && npm run test:integration && npm run test:health",
"test:unit": "NODE_ENV=test vitest run tests/unit",
"test:integration": "NODE_ENV=test vitest run tests/integration",
"test:health": "NODE_ENV=test vitest run tests/health.test.js",
"test:all-parallel": "NODE_ENV=test vitest run",
"test:watch": "NODE_ENV=test vitest",
"test:migrate": "NODE_ENV=test knex migrate:latest --env test",
"curl:health": "./curl-tests/01-health-check.sh",
"curl:create": "./curl-tests/02-create-submission.sh",
"curl:invalid": "./curl-tests/03-create-invalid-submission.sh",
"curl:list": "./curl-tests/04-get-submissions.sh",
"curl:stats": "./curl-tests/05-get-stats.sh",
"curl:search": "./curl-tests/06-search-submissions.sh",
"curl:recent": "./curl-tests/07-get-recent.sh",
"curl:update": "./curl-tests/08-update-status.sh",
"curl:get": "./curl-tests/09-get-by-id.sh",
"curl:status": "./curl-tests/10-get-by-status.sh",
"curl:all": "./curl-tests/run-all-tests.sh",
"curl:basic": "./curl-tests/01-health-check.sh && ./curl-tests/02-create-submission.sh && ./curl-tests/04-get-submissions.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brillnt/keylight-backend.git"
},
"keywords": [
"nodejs",
"express",
"postgresql",
"intake-form",
"keylight",
"esm",
"modern"
],
"author": "Brillnt",
"license": "ISC",
"bugs": {
"url": "https://github.com/brillnt/keylight-backend/issues"
},
"homepage": "https://github.com/brillnt/keylight-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"knex": "^3.1.0",
"nodemailer": "^6.9.16",
"pg": "^8.16.3"
},
"devDependencies": {
"nodemon": "^3.1.7",
"supertest": "^7.1.4",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}