-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "artists-project",
"version": "0.0.1",
"description": "Simple authors application.",
"main": "app.js",
"author": "Avesh Srivastava",
"license": "MIT",
"scripts": {
"prestart": "grunt",
"start": "node app.js",
"predev": "grunt",
"dev": "open http://localhost:8080 & node app & grunt watch",
"predebug": "grunt",
"debug": "open http://localhost:3000 & open http://localhost:8080/debug?port=5858",
"postdebug": "node-inspector & node --debug app"
},
"dependencies": {
"body-parser": "^1.4.3",
"express": "^4.13.4",
"method-override": "^2.1.3",
"mongoose": "^4.4.12",
"morgan": "^1.1.1",
"@uirouter/angularjs": "latest",
"@uirouter/visualizer": "latest"
},
"devDependencies": {
"angular-ui-router": "^1.0.3",
"crypto": "0.0.3",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-browserify": "^5.0.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-watch": "^1.0.0",
"node-inspector": "^1.1.1"
}
}