-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 2.49 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
{
"name": "apostrophe-enterprise-testbed",
"version": "2.0.0",
"description": "Testbed for browser-based functional testing of apostrophe, apostrophe-workflow and related modules common in an enterprise setting.",
"main": "app.js",
"scripts": {
"modified": "npx nightwatch tests/scenarios/modified-documents-modal.spec.js --config nightwatch.js --env local",
"start": "node app.js",
"dump": "mongodump -d apostrophe-enterprise-testbed",
"restore": "mongorestore --noIndexRestore mongodump/ --drop",
"e2e-local": "VISUAL_ENV=local tests/run-all",
"test-with-visual-diff": "( VISUAL_ENV=local node tests/screenshot-previous.js && VISUAL_ENV=local tests/run-all && node visual-regression-test.js )",
"minify-test": "test/minify",
"headless-tests": "test/headless",
"test": "rm -f package-lock.json && rm -rf node_modules && npm install && npm run minify-test && npm run headless-tests && ( npm run e2e-local ) && ( DISABLE_ANON_SESSION=1 NO_REPLICATE=1 npm run e2e-local )"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/apostrophe-enterprise-testbed"
},
"author": "Apostrophe Technologies",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.3",
"apostrophe": "github:apostrophecms/apostrophe#a2",
"apostrophe-blog": "github:apostrophecms/apostrophe-blog",
"apostrophe-forms": "github:apostrophecms/apostrophe-forms",
"apostrophe-i18n-debugger": "github:apostrophecms/apostrophe-i18n-debugger",
"apostrophe-nightwatch-tools": "github:apostrophecms/apostrophe-nightwatch-tools",
"apostrophe-personas": "github:apostrophecms/apostrophe-personas",
"apostrophe-seo": "github:apostrophecms/apostrophe-seo#main",
"apostrophe-site-map": "github:apostrophecms/apostrophe-site-map",
"apostrophe-workflow": "github:apostrophecms/apostrophe-workflow",
"archiver": "^2.1.1",
"cheerio": "^1.0.0-rc.3",
"chromedriver": "^123.0.3",
"death": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-apostrophe": "^2.0.2",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"html2plaintext": "^1.0.1",
"kill-port": "^1.5.1",
"mkdirp": "^1.0.4",
"moment": "^2.22.2",
"nightwatch": "^1.0.0",
"once": "^1.4.0",
"pixelmatch": "^4.0.2",
"pngjs": "^3.4.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.2",
"uploadfs": "^1.0.0"
}
}