
Used a combination of AngularJS and Bootstrap to form a preliminary front-end website for Refstack. Most of the content text can be considered placeholders and is subject to change. Change-Id: Ide82783478d1863052fe54d02ca6ee88113c46b2
29 lines
776 B
JSON
29 lines
776 B
JSON
{
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"name": "refstack-ui",
|
|
"description": "A user interface for Refstack",
|
|
"license": "Apache2",
|
|
"devDependencies": {
|
|
"karma": "^0.12.23",
|
|
"karma-chrome-launcher": "^0.1.5",
|
|
"karma-jasmine": "^0.2.2",
|
|
"karma-firefox-launcher": "^0.1.3",
|
|
"protractor": "~1.0.0",
|
|
"http-server": "^0.6.1",
|
|
"tmp": "0.0.23",
|
|
"bower": "1.3.12",
|
|
"shelljs": "^0.2.6"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "bower install",
|
|
|
|
"prestart": "npm install",
|
|
"start": "http-server ./app -a 0.0.0.0 -p 8080",
|
|
|
|
"pretest": "npm install",
|
|
"test": "node node_modules/karma/bin/karma start tests/karma.conf.js",
|
|
"test-single-run": "node node_modules/karma/bin/karma start tests/karma.conf.js --single-run"
|
|
}
|
|
}
|