-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 861 Bytes
/
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
{
"name": "bills-with-friends",
"version": "0.2.0",
"repository": "http://github.com/jordangarcia/bills.git",
"dependencies": {
"async": "~0.2.9",
"mkdirp": "~0.3.5",
"trumpet": "~1.6.3",
"concat-stream": "~1.2.0",
"underscore": "~1.5.2",
"through": "~2.3.4",
"node-sass": "~0.7.0",
"connect": "~2.11.0",
"rimraf": "~2.2.2",
"fs.extra": "~1.2.1",
"clean-css": "~2.0.6",
"uglify-js": "~2.4.8",
"node-watch": "~0.3.4"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"test": "grunt test",
"start": "npm run start-dev",
"build-dev": "node build.js dev app/index.html",
"build-prod": "node build.js prod app/index.html",
"start-dev": "node start.js dev",
"start-prod": "node start.js prod",
"build-and-start-prod": "npm run build-prod && npm run start-prod"
}
}