forked from pakastin/nodegarden
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 806 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 806 Bytes
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
{
"name": "nodegarden",
"version": "0.0.1",
"description": "",
"main": "index.ts",
"scripts": {
"postinstall": "mkdir -p public/lib public/css && tsd install && npm run-script build-css && npm run-script build-ts && npm run-script build-html",
"start": "node watch",
"build-css": "stylus -c -u nib css/index.styl -o public/css/main.css",
"build-ts": "node ./build-ts.js",
"build-html": "jade views/*.jade -o public/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.23",
"chokidar": "^1.2.0",
"connect": "^3.4.0",
"fs-extra": "^0.26.0",
"jade": "^1.11.0",
"nib": "^1.1.0",
"ntypescript": "^1.201510260605.1",
"serve-static": "^1.10.0",
"stylus": "^0.52.4",
"tsd": "^0.6.5",
"uglify-js": "^2.5.0"
}
}