-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"version": "0.0.0",
"private": true,
"name": "portal",
"description": "The Getty Research Portal",
"repository": "https://stash.getty.edu/projects/GRIIS/repos/portal",
"license": "MIT",
"dependencies": {
"body-parser": "^1.14.1",
"express": "^4.13.3"
},
"devDependencies": {
"bower": "^1.6.3",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-ng-config": "^1.3.1",
"http-server": "^0.8.5",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "~0.1.6",
"karma-jasmine": "^0.3.7",
"karma-ng-html2js-preprocessor": "^0.2.1",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "~0.1.1",
"karma-spec-reporter": "0.0.23",
"phantomjs": "^2.1.3",
"phantomjs-prebuilt": "^2.1.3",
"protractor": "4.0.10",
"protractor-uisref-locator": "^1.2.0",
"shelljs": "^0.5.3",
"tmp": "0.0.28"
},
"scripts": {
"delete-all-containers": "docker rm $(docker ps --no-trunc -aq)",
"smart-install-in-container": "npm install -g bower && npm update",
"start-es": "sudo /etc/init.d/elasticsearch start",
"stop-es": "sudo /etc/init.d/elasticsearch stop",
"restart-es": "sudo /etc/init.d/elasticsearch restart",
"load-es-data": "bash make_elastic_index_load_mock_data.sh",
"start": "node src/server/server.js",
"django": "bash django_init.sh",
"test": "node node_modules/karma/bin/karma start karma.config.js",
"test-single-run": "node node_modules/karma/bin/karma start karma.config.js --single-run",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor.config.js"
}
}