-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.2 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.2 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
70
71
72
{
"name": "dramatis-api",
"version": "0.0.0",
"type": "module",
"description": "Graph database-driven API for site of theatrical productions, materials, and associated data.",
"author": "https://github.com/andygout",
"license": "MS-RSL",
"main": "src/server.js",
"scripts": {
"format": "prettier \"**/*.{js,jsx,json,css,md,yml}\" --write",
"format-check": "prettier \"**/*.{js,jsx,json,css,md,yml}\" --check",
"lint": "eslint",
"lint-fix": "eslint --fix",
"lintspaces": "git ls-files | xargs lintspaces -e .editorconfig",
"lint-check": "npm run lint && npm run lintspaces",
"lint-staged": "lint-staged",
"unit-test": "node --env-file=./test-unit/.env --test test-unit/**/*.test.js",
"int-test": "node --env-file=./test-int/.env --test test-int/**/*.test.js",
"e2e-test-resources": "docker compose -f docker/docker-compose.yml up",
"e2e-test": "node --env-file=./test-e2e/.env --import=./test-e2e/per-test-file-teardown.js --test --test-global-setup=test-e2e/global-setup.js --test-timeout=60000 --test-concurrency=1 test-e2e/**/*.test.js",
"seed-db": "node db-seeding/seed-db",
"transfer-env-dev": "node transfer-env-dev",
"setup": "node src/setup.js",
"start": "npm run setup && node --watch-path=src --watch-preserve-output src/server.js"
},
"lint-staged": {
"*.{js,jsx,json,css,md,yml}": [
"prettier --write"
],
"*.{js,jsx}": [
"eslint"
],
"*": [
"lintspaces -e .editorconfig"
]
},
"pre-commit": [
"lint-staged",
"unit-test",
"int-test"
],
"engines": {
"node": "24.8.0",
"npm": "11.6.0"
},
"volta": {
"node": "24.8.0",
"npm": "11.6.0"
},
"dependencies": {
"directly": "2.0.6",
"dotenv": "17.2.2",
"express": "5.1.0",
"morgan": "1.10.1",
"neo4j-driver": "5.28.2"
},
"devDependencies": {
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"esmock": "2.7.3",
"globals": "16.4.0",
"jsonlint": "1.6.3",
"lint-staged": "16.4.0",
"lintspaces-cli": "1.0.0",
"node-mocks-http": "1.17.2",
"pre-commit": "1.2.2",
"prettier": "3.8.1",
"sinon": "21.0.0",
"supertest": "^7.2.2"
}
}