blob: ac47728b8ab05859bb66043009d70f1f013de0fe [file] [log] [blame]
Matteo Scandolobf14f882016-06-02 10:01:34 -07001{
2 "name": "subscriber-portal",
3 "version": "1.0.0",
4 "description": "Demo implementation for a subscriber portal in XOS",
5 "main": "index.js",
6 "scripts": {
Matteo Scandoloa3844ec2016-06-02 15:45:19 -07007 "scripts": "babel --presets es2015 ./src/app --watch --out-dir ./src/dist -s",
8 "preserver": "bower install && wiredep --dependencies --src src/index.html",
Matteo Scandolobf14f882016-06-02 10:01:34 -07009 "styles": "node-sass -w -r --include-path --source-map-embed -o ./src/style ./src/sass/main.scss",
10 "server": "browser-sync start --config bs-config.js",
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070011 "prestart": "npm install && node-sass --include-path --source-map-embed -o ./src/style ./src/sass/main.scss",
12 "start": "parallelshell \"npm run server\" \"npm run styles\" \"npm run scripts\"",
13 "lint": "eslint ./src/app"
Matteo Scandolobf14f882016-06-02 10:01:34 -070014 },
15 "author": "Matteo Scandolo",
16 "license": "ISC",
17 "devDependencies": {
18 "browser-sync": "^2.11.1",
19 "http-proxy": "^1.12.1",
20 "node-sass": "^3.4.2",
21 "parallelshell": "^2.0.0",
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070022 "wiredep": "^3.0.0",
23 "babel-cli": "^6.4.5",
24 "babel-preset-es2015": "^6.5.0"
Matteo Scandolobf14f882016-06-02 10:01:34 -070025 },
26 "dependencies": {}
27}