forked from imba/imba.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.76 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
56
57
58
59
60
{
"name": "imba.io",
"description": "Official website for Imba",
"keywords": [
"imba",
"website"
],
"author": "Sindre Aarsaether",
"bugs": "https://github.com/somebee/imba.io/issues",
"version": "1.0.0",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/somebee/imba.io/raw/master/LICENSE"
}
],
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"start": "imba ./src/server.imba",
"build": "webpack --colors --display-modules",
"build-netlify": "yarn run build && imba src/netlify.imba",
"watch": "webpack --devtool inline-source-map --watch --progress --colors --display-modules --debug",
"dev": "imba ./src/server.imba",
"docker-build": "docker build -t imba.io:`git log --pretty=format:'%h' HEAD -n1` .",
"docker-deploy": "docker push imba.io:`git log --pretty=format:'%h' HEAD -n1`",
"docker-run": "docker run -p3011:3011 -t -i imba.io:`git log --pretty=format:'%h' HEAD -n1`",
"lint": "imba src/data/guide.imba"
},
"files": [],
"directories": {},
"main": "./index.js",
"homepage": "http://imba.io",
"repository": {
"type": "git",
"url": "git://github.com/somebee/imba.io.git"
},
"devDependencies": {},
"dependencies": {
"css-loader": "^3.2.0",
"express": "^4.13.2",
"extract-text-webpack-plugin": "^3.0.2",
"highlight.js": "^8.8.0",
"imba": "^1.4.0",
"imba-router": "^0.1.1",
"less": "^2.5.1",
"less-loader": "^4.0.5",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"marked": "^0.7.0",
"octonode": "^0.9.5",
"source-map": "^0.5.3",
"style-loader": "^0.20.1",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.10.0",
"webpack-assets-manifest": "^1.0.0",
"write-good": "^1.0.2"
}
}