-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.36 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
{
"version": "0.0.0",
"private": true,
"name": "adopteitor-frontend",
"description": "",
"repository": "https://github.com/FacundoMainere/adopteitor",
"license": "MIT",
"dependencies": {
"dotenv": "^4.0.0",
"gulp": "^3.9.1",
"gulp-file-include": "^0.13.7",
"gulp-minify": "0.0.11",
"gulp-rename": "^1.2.2",
"gulp-ruby-sass": "^2.0.6",
"less": "~1.5.1",
"node-sass": "^3.4.2"
},
"devDependencies": {
"bower": "^1.3.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-concat-css": "^2.3.0",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"http-server": "^0.6.1",
"shelljs": "^0.2.6",
"tmp": "0.0.23",
"watch": "~0.16.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server ./app -a 0.0.0.0 -p 8010",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"watch-css": "watch 'lessc app/less/app.less > app/css/app.css' app/less",
"watch": "npm run watch-css",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}