-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "2lazy2debug.github.io",
"version": "1.0.0",
"description": "My personal lazy website",
"scripts": {
"test": "test",
"clean": "rm -rf static/css index.html && mkdir -p static/css",
"build-css": "stylus source/stylesheets/index.styl -o static/css",
"build-jade" :"jade source/templates/homepage.jade -o . && mv homepage.html index.html",
"build": "npm run clean && npm run build-css && npm run build-jade",
"watch": "npm run clean && npm run watch-css & nodemon server -e js,jade",
"watch-css": "stylus source/stylesheets/index.styl -o static/css -w",
"start": "node server",
"deploy": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2lazy2debug/2lazy2debug.github.io.git"
},
"keywords": [
"2lazy2debug",
"dev",
"verge",
"vergecurrency",
"lazy",
"developer",
"blockchain",
"cryptocurrency",
"java",
"android"
],
"author": "2lazy2debug - (Manuel Cabras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/2lazy2debug/2lazy2debug.github.io/issues"
},
"homepage": "https://2lazy2debug.github.io/2lazy2debug.github.io",
"dependencies": {
"express": "^4.16.4",
"gh-pages": "^2.0.1",
"grunt": "^1.0.3",
"jade": "^1.11.0",
"morgan": "^1.9.1",
"nodemon": "^1.9.2",
"stylus": "^0.54.5"
},
"devDependencies": {
"connect": "^3.6.6",
"grunt-contrib-watch": "^1.1.0",
"grunt-jade-tasks": "0.0.0",
"serve-static": "^1.13.2"
}
}