-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 KB
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
61
62
63
64
{
"name": "jsbelgrade.org",
"version": "1.0.0",
"description": "Website for jsbelgrade.org",
"main": "bin/build.js",
"scripts": {
"clean": "rimraf ./node_modules",
"lint": "standard --verbose | snazzy",
"commit": "npm run lint && git-cz",
"build": "npm run lint && node ./bin/build.js",
"server": "(wait-on http://localhost:$PORT && opn http://localhost:$PORT) | node ./bin/server.js",
"start": "npm run lint && cross-env PORT=8080 npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSBelgrade/website.git"
},
"author": "JSBelgrade Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSBelgrade/website/issues"
},
"homepage": "https://github.com/JSBelgrade/website#readme",
"dependencies": {
"chokidar": "1.7.0",
"downsize": "0.0.8",
"handlebars": "4.0.8",
"lodash": "^4.17.5",
"marked": "^0.3.6",
"metalsmith": "2.2.2",
"metalsmith-collections": "0.9.0",
"metalsmith-feed": "0.2.0",
"metalsmith-ignore": "^0.1.2",
"metalsmith-layouts": "1.8.1",
"metalsmith-markdown": "0.2.1",
"metalsmith-pagination": "^1.4.0",
"metalsmith-permalinks": "0.5.0",
"metalsmith-prism": "3.0.2",
"moment": "2.19.3",
"ncp": "2.0.0",
"st": "1.2.2"
},
"devDependencies": {
"commitizen": "*",
"cross-env": "^5.1.3",
"cz-conventional-changelog": "*",
"snazzy": "*",
"opn-cli": "^3.1.0",
"wait-on": "^2.1.0",
"standard": "*",
"rimraf": "^2.6.2"
},
"standard": {
"ignore": [
"static",
"scripts"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
}
}