-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.96 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
54
55
{
"name": "ioschool.is",
"version": "0.0.0",
"description": "ioschool.is home page",
"main": "index.js",
"browser": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-html": "node .",
"build-js": "browserify . -o build/bundle.js",
"build-css": "lessc src/index.less build/bundle.css",
"build-assets": "cp -r assets/* build",
"build": "mkdir -p build && rm -rf build/* && npm run build-html && npm run build-js && npm run build-css && npm run build-assets",
"start": "npm run build && node server",
"deploy": "npm run build && bin/deploy",
"watch-html": "node . -w",
"watch-js": "watchify . -o build/bundle.js",
"watch-css": "npm run build-css && watch-run -p '**/*.less' npm run build-css",
"watch-assets": "npm run build-assets && watch-run -p 'assets/**/*' npm run build-assets",
"watch": "mkdir -p build && rm -rf build/* && (npm run watch-html & npm run watch-js & npm run watch-css & npm run watch-assets)",
"develop": "(npm run watch & node server)"
},
"repository": {
"type": "git",
"url": "https://github.com/ioschool/ioschool.is"
},
"author": "ioschool",
"license": "CC-BY-SA",
"bugs": {
"url": "https://github.com/ioschool/ioschool.is/issues"
},
"homepage": "https://github.com/ioschool/ioschool.is",
"dependencies": {
"bootstrap": "^3.3.2",
"browserify": "^6.3.4",
"handlebars": "^2.0.0",
"less": "^2.3.1",
"load-metalsmith-plugins": "^0.1.0",
"metalsmith": "^1.3.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-collections": "^0.6.0",
"metalsmith-in-place": "^1.0.1",
"metalsmith-layouts": "^1.0.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-watch": "^0.1.1",
"watchify": "^2.0.0"
},
"devDependencies": {
"connect": "^3.3.0",
"connect-livereload": "^0.5.2",
"ecstatic": "^0.5.5",
"gh-pages": "^0.2.0",
"watch-run": "queckezz/watch-run#16f589c1db7f2ec512020284d5ad789947e9d650"
}
}