forked from neo4j-documentation/docs-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@neo4j/docs-ui",
"version": "0.20.0",
"description": "Produces the UI bundle for the Neo4j documentation site",
"homepage": "https://github.com/neo4j-documentation/docs-ui",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neo4j-documentation/docs-ui.git"
},
"engines": {
"node": ">= 12.0.0"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@gram-data/gram-d3": "^0.1.2",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"asciidoctor.js": "1.5.9",
"auth0-js": "^9.14.0",
"autoprefixer": "~9.7",
"browser-pack-flat": "~3.4",
"browserify": "~16.5",
"cssnano": "~4.1",
"d3-force": "^2.0.1",
"eslint": "~6.8",
"eslint-config-standard": "~14.1",
"eslint-plugin-import": "~2.20",
"eslint-plugin-node": "~11.1",
"eslint-plugin-promise": "~4.2",
"eslint-plugin-standard": "~4.0",
"fancy-log": "~1.3",
"fs-extra": "~8.1",
"gulp": "~4.0",
"gulp-concat": "~2.6",
"gulp-connect": "~5.7",
"gulp-if": "^3.0.0",
"gulp-imagemin": "~6.2",
"gulp-livereload": "^4.0.2",
"gulp-postcss": "~8.0",
"gulp-uglify": "~3.0",
"gulp-vinyl-zip": "~2.2",
"handlebars": "~4.7",
"highlight.js": "^10.7",
"highlightjs-cypher": "^1.2",
"husky": "^4.3.0",
"js-yaml": "~3.13",
"medium-zoom": "^1.0.6",
"merge-stream": "~2.0",
"node-fetch": "^2.6.1",
"postcss-calc": "~7.0",
"postcss-custom-properties": "~9.1",
"postcss-import": "~12.0",
"postcss-url": "~8.0",
"prettier-eslint": "~9.0",
"require-directory": "~2.1",
"require-from-string": "~2.0",
"rollup": "^2.38.5",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "~13.3",
"stylelint-config-standard": "~20.0",
"tailwindcss": "^1.4.6",
"through2": "~3.0",
"typeface-roboto": "0.0.75",
"typeface-roboto-mono": "0.0.75",
"vinyl-buffer": "~1.0",
"vinyl-fs": "~3.0"
},
"scripts": {
"start": "LIVERELOAD=true gulp preview",
"lint": "npm run lint:css && npm run lint:js",
"lint:css": "stylelint \"src/css/**/*.css\"",
"lint:js": "eslint gulpfile.js \"gulp.d/**/*.js\" \"src/{helpers,js}/**/*.js\"",
"build": "gulp bundle"
},
"dependencies": {
"@antora/cli": "^2.3.3",
"@antora/site-generator-default": "^2.3.3",
"@neo4j-ndl/base": "^2.0.0",
"font-awesome": "^4.7.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:css -- --fix && npm run lint:js -- --fix"
}
}
}