-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "node-website-template",
"version": "0.0.0",
"description": "Website/Web Service template in Node.js",
"main": "router.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "./node_modules/browserify/bin/cmd.js --debug public/js/app.js > public/js/bundle.js",
"start": "npm run build && ./node_modules/node-dev/bin/node-dev server.js",
"watchify": "./node_modules/watchify/bin/cmd.js --debug public/js/app.js -o public/js/bundle.js",
"style": "./node_modules/stylus/bin/stylus -c public/css/app.styl",
"test": "node_modules/tape/bin/tape test/client/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/oren/node-website-template.git"
},
"author": "",
"license": "BSD",
"readmeFilename": "Readme.md",
"gitHead": "4da102a011e51e3415a65db118b52587c3415d1d",
"dependencies": {
"error-page": "0.0.6",
"routes": "~0.2.0",
"ejs": "~0.8.4",
"templar": "~0.2.1",
"st": "~0.1.3",
"forever": "~0.10.11"
},
"devDependencies": {
"tape": "~1.0.2",
"browserify": "~2.14.2",
"stylus": "~0.32.1",
"watchify": "~0.3.0",
"node-dev": "~2.0.2"
}
}