forked from bocoup/jqfundamentals.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "jqfundamentals.com",
"private": true,
"version": "0.2.0",
"description": "jqfundamentals.com site",
"main": "index.js",
"scripts": {
"test": "grunt mocha",
"build": "grunt requirejs",
"serve": "node server",
"provision": "ansible-playbook -i deploy/ansible/inventory/production deploy/ansible/provision.yml --ask-sudo-pass",
"deploy": "ansible-playbook -i deploy/ansible/inventory/production deploy/ansible/deploy.yml --ask-sudo-pass"
},
"author": "Rebecca Murphey",
"license": "Copyright 2012 Bocoup. All rights reserved.",
"dependencies": {
"Faker": "0.1.3",
"body-parser": "1.10.0",
"compression": "1.2.1",
"express": "4.10.4",
"jade": "0.26.3",
"js-yaml": "0.3.7",
"marked": "0.2.5",
"morgan": "1.5.0",
"q": "0.8.5",
"serve-favicon": "2.1.7",
"underscore": "1.3.3"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-requirejs": "0.4.4",
"grunt-contrib-watch": "0.6.1",
"grunt-mocha": "0.4.11",
"load-grunt-tasks": "1.0.0"
}
}