-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.26 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
{
"name": "epubtest-site",
"version": "1.0.0",
"description": "EPUB reading experience testing site",
"main": "index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/daisy/epubtest-site"
},
"engines": {
"node": "20.1.0"
},
"scripts": {
"start": "node src/start.js",
"dev": "nodemon -e js,html,njk,css src/start.js --exec \"node --require dotenv/config\"",
"dev:testdb": "nodemon -e js,html,njk,css src/start.js dotenv_config_path=./test/test.env --exec \"node --require dotenv/config\"",
"load-test-data": "node --require dotenv/config other-test-scripts/load-test-data.js dotenv_config_path=./test/test.env",
"test:data": "mocha --env dotenv_config_path=test/test.env --require dotenv/config test/test-data-operations/*js ",
"test:ui": "mocha --env dotenv_config_path=test/test.env --require dotenv/config --require test/test-ui/mocha.global.fixtures.js test/test-ui/*js ",
"gulp": "./node_modules/.bin/gulp"
},
"author": {
"name": "Marisa DeMeglio",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@graphile-contrib/pg-order-by-related": "^1.0.0-beta.6",
"@graphile-contrib/pg-simplify-inflector": "^5.0.0-beta.1",
"aws-sdk": "^2.601.0",
"axios": "^0.21.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.9.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"express-validator": "^6.2.0",
"extract-zip": "^1.6.7",
"formidable": "^1.2.1",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-stylelint": "^13.0.0",
"i18next": "^19.4.5",
"i18next-fs-backend": "^1.0.6",
"i18next-http-middleware": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.3.1",
"nunjucks": "^3.2.2",
"pg": "^8.5.1",
"postgraphile": "^4.10.0",
"postgraphile-plugin-connection-filter": "^2.1.1",
"stylelint": "^13.2.0",
"stylelint-config-recommended": "^3.0.0",
"tmp": "^0.1.0",
"winston": "^3.3.3",
"xmldom": "^0.3.0",
"xpath": "0.0.27"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^8.3.0",
"nodemon": "^1.19.4",
"selenium-webdriver": "^4.0.0-beta.1",
"supertest": "^4.0.2"
}
}