-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "data-explorer",
"version": "0.8.0",
"description": "The DLx portal for viewing, searching, and aggregating data.",
"author": {
"name": "Daniel W. Hieber",
"url": "https://danielhieber.com"
},
"homepage": "https://github.com/digitallinguistics/data-explorer",
"bugs": "https://github.com/digitallinguistics/data-explorer/issues",
"license": "MIT",
"keywords": [
"language",
"linguistics",
"documentary linguistics",
"language documentation",
"corpus linguistics",
"corpora",
"data science",
"digital humanities"
],
"repository": {
"type": "git",
"url": "https://github.com/digitallinguistics/data-explorer.git"
},
"main": "index.js",
"private": true,
"type": "module",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "node build/index.js",
"cypress": "server-test 3001 open-cypress",
"cypress-tests": "server-test 3001 run-cypress",
"open-cypress": "cypress open --config-file=test/cypress.config.js",
"run-cypress": "cypress run --config-file=test/cypress.config.js",
"setup-db": "node bin/setupDatabase.js",
"start-db": "powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./bin/start-db.ps1",
"stop-db": "cd C:\\Program Files\\Azure Cosmos DB Emulator && Microsoft.Azure.Cosmos.Emulator.exe /Shutdown",
"prepare-release": "node build/updateCitation.js",
"start": "node index.js",
"stop-only": "stop-only --folder layouts,pages,services,test",
"test": "npm run unit-tests && npm run cypress-tests",
"unit-tests": "mocha '**/*.unit.js' --bail"
},
"dependencies": {
"@digitallinguistics/db": "^0.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^5.0.0-beta.1",
"handlebars": "^4.7.7",
"helmet": "^6.0.1",
"vary": "^1.1.2"
},
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.5",
"@digitallinguistics/design": "^0.26.0",
"@digitallinguistics/eslint-config": "^0.3.0",
"@digitallinguistics/models": "^0.4.1",
"@digitallinguistics/stylelint-config": "^0.1.2",
"@digitallinguistics/styles": "^2.0.3",
"browserslist": "^4.21.5",
"chai": "^4.3.7",
"clean-css": "^5.3.2",
"cypress": "^12.5.1",
"esbuild": "^0.16.17",
"esbuild-plugin-browserslist": "^0.6.0",
"eslint": "^8.33.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-cypress": "^2.12.1",
"express-handlebars": "^6.0.7",
"flexbox-reset": "^8.1.0",
"fs-extra": "^11.1.0",
"js-yaml": "^4.1.0",
"less": "^4.1.3",
"mocha": "^10.2.0",
"ora": "^6.1.2",
"readdirp": "^3.6.0",
"serve-handler": "^6.1.5",
"start-server-and-test": "^1.15.3",
"stop-only": "^3.3.0",
"stylelint": "^14.16.1",
"svgstore": "^3.0.1"
}
}