-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.22 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "angular-skeleton",
"description": "Skeleton to develop Angular based projects",
"version": "0.0.1",
"repository" : {
"type" : "git",
"url" : "https://github.com/andrew-cunliffe/angular-skeleton"
},
"scripts": {
"start": "node server.js",
"test": "grunt test",
"postinstall": "bower install && grunt build"
},
"dependencies": {
"bower": "latest",
"grunt": "latest",
"express": "latest",
"grunt-cli": "latest",
"grunt-contrib-concat": "latest",
"grunt-contrib-copy": "latest",
"grunt-contrib-less": "latest",
"grunt-contrib-uglify": "latest",
"body-parser": "latest",
"request": "*",
"ejs": "*",
"morgan": "*",
"errorhandler": "*"
},
"devDependencies": {
"grunt-express-server": "latest",
"connect-livereload": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-karma": "latest",
"grunt-plato": "latest",
"karma-jasmine": "~0.2.0",
"karma-phantomjs-launcher": "latest",
"karma-spec-reporter": "latest",
"karma-coverage-0.11": "^0.1.1"
}
}