forked from cbazureau/angular-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.07 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.07 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "angular-starter-kit",
"version": "1.0.0",
"dependencies": {},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"lint": "./node_modules/.bin/eslint ./src/",
"lint-fix": "./node_modules/.bin/eslint ./src/ --fix",
"build": "./node_modules/.bin/gulp build",
"start": "./node_modules/.bin/gulp serve",
"prepublish": "lodash strict include=get -o bower_components/lodash-custom/lodash-custom.js",
"install": "node tools/hook-setup-commit.js && node tools/hook-setup-push.js"
},
"devDependencies": {
"babel-core": "~6.10.4",
"babel-loader": "~6.2.4",
"babel-preset-es2015": "~6.9.0",
"browser-sync": "~2.13.0",
"browser-sync-spa": "~1.0.3",
"chalk": "~1.1.3",
"del": "~2.2.1",
"eslint": "^3.0.1",
"eslint-loader": "~1.4.1",
"eslint-plugin-angular": "^1.3.0",
"eslint-plugin-lodash": "^1.9.4",
"estraverse": "~4.2.0",
"gulp": "~3.9.1",
"gulp-angular-templatecache": "~1.8.0",
"gulp-autoprefixer": "~3.1.0",
"gulp-copy": "0.0.2",
"gulp-cssnano": "~2.1.2",
"gulp-eslint": "~3.0.1",
"gulp-filter": "~3.0.1",
"gulp-flatten": "~0.2.0",
"gulp-htmlmin": "~1.3.0",
"gulp-inject": "~3.0.0",
"gulp-load-plugins": "~1.2.4",
"gulp-rename": "~1.2.2",
"gulp-replace": "~0.5.4",
"gulp-rev": "~7.1.0",
"gulp-rev-replace": "~0.4.3",
"gulp-sass": "~2.3.2",
"gulp-size": "~2.1.0",
"gulp-sourcemaps": "~1.6.0",
"gulp-uglify": "~1.5.4",
"gulp-useref": "~3.1.0",
"gulp-util": "~3.0.7",
"http-proxy-middleware": "~0.17.0",
"jasmine-core": "^2.4.1",
"karma": "~1.1.1",
"karma-coverage": "~1.1.0",
"karma-jasmine": "~1.0.2",
"karma-ng-html2js-preprocessor": "~1.0.0",
"karma-phantomjs-launcher": "~1.0.1",
"karma-phantomjs-shim": "~1.4.0",
"lodash": "~4.13.1",
"lodash-cli": "~4.13.1",
"main-bower-files": "~2.13.1",
"ng-annotate-loader": "0.1.0",
"uglify-save-license": "~0.4.1",
"webpack-stream": "~2.1.1",
"wiredep": "~4.0.0",
"wrench": "~1.5.9"
},
"engines": {
"node": ">=5.0.0"
}
}