-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.18 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
{
"name": "boilerplate",
"version": "2.1.0",
"license": "MIT",
"description": "Front-end application source boilerplate",
"main": "app/app.js",
"devDependencies": {
"browser-sync": "^2.26.14",
"del": "^1.1.1",
"gulp": "^4.0.2",
"gulp-angular-templatecache": "^1.6.0",
"gulp-changed": "^1.1.1",
"gulp-clean-css": "^3.10.0",
"gulp-eslint": "^4.0.2",
"gulp-html-replace": "^1.4.4",
"gulp-htmlmin": "^3.0.0",
"gulp-imagemin": "^5.0.3",
"gulp-notify": "^2.2.0",
"gulp-size": "^1.2.0",
"gulp-uglify": "^1.1.0",
"gulp-usemin": "^0.3.29"
},
"scripts": {
"start": "gulp",
"build": "gulp build",
"server": "gulp serveSource",
"serverbuild": "gulp serveBuild",
"postinstall": "gulp serveBuild"
},
"repository": {
"type": "github",
"url": "https://github.com/tanmoythander/angular-gulp-boilerplate"
},
"author": "Tanmoy Thander",
"dependencies": {
"@uirouter/angularjs": "^1.0.20",
"angular": "^1.8.2",
"angular-resource": "~1.5.8",
"bootstrap": "^4.1.3",
"font-awesome": "^4.7.0",
"jquery": "^3.6.0",
"ngstorage": "^0.3.11",
"popper.js": "^1.14.6",
"request": "^2.88.0"
}
}