-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"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/app.js",
"scripts": {
"lint": "eslint",
"lintspaces": "git ls-files | xargs lintspaces -e .editorconfig",
"lint-check": "npm run lint && npm run lintspaces",
"unit-test": "mocha --config test-unit/.mocharc.json",
"int-test": "mocha --config test-int/.mocharc.json",
"e2e-test-resources": "docker compose -f docker/docker-compose.yml up",
"e2e-test": "mocha --config test-e2e/.mocharc.json",
"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/app.js"
},
"pre-commit": [
"lint-check",
"unit-test",
"int-test"
],
"engines": {
"node": "22.2.0",
"npm": "10.7.0"
},
"volta": {
"node": "22.2.0",
"npm": "10.7.0"
},
"dependencies": {
"directly": "2.0.6",
"dotenv": "16.4.7",
"express": "4.21.2",
"morgan": "1.10.0",
"neo4j-driver": "5.27.0"
},
"devDependencies": {
"chai": "5.1.2",
"chai-http": "5.1.1",
"eslint": "9.17.0",
"eslint-plugin-mocha": "10.5.0",
"esmock": "2.6.9",
"globals": "15.14.0",
"jsonlint": "1.6.3",
"lintspaces-cli": "1.0.0",
"mocha": "11.0.1",
"node-mocks-http": "1.16.2",
"pre-commit": "1.2.2",
"sinon": "19.0.2"
}
}