-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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
47
48
49
{
"name": "cep",
"version": "0.1.0",
"description": "",
"main": "index.js",
"engines": {
"node": "0.10.36",
"npm": "2.6.0"
},
"scripts": {
"postinstall": "mkdir -p dist && ./node_modules/.bin/grunt build",
"start": "nodemon server.js"
},
"author": "Miguel Peixe <[email protected]>",
"license": "MIT",
"dependencies": {
"angular": "^1.3.15",
"angular-ui-router": "^0.2.13",
"body-parser": "^1.12.2",
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"cep-scraper": "^0.2.0",
"compression": "^1.4.3",
"express": "~4.12.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.6.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jade": "^0.14.1",
"grunt-contrib-less": "^1.0.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"mongoose": "^4.0.1",
"ng-dialog": "^0.3.12",
"underscore": "^1.8.2"
},
"devDependencies": {},
"browser": {
"angular": "./node_modules/angular/angular.js"
},
"browserify-shim": {
"angular": "angular"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}