site/package.json

91 lines
2.4 KiB
JSON
Raw Normal View History

2015-12-19 20:56:04 +01:00
{
2017-05-29 21:15:48 +02:00
"name": "bigchaindb-site",
2016-02-29 16:20:09 +01:00
"version": "1.4.1",
2015-12-19 20:56:04 +01:00
"author": {
"name": "Matthias Kretschmann",
"email": "matthias@bigchaindb.com"
2015-12-19 20:56:04 +01:00
},
2016-01-30 15:04:10 +01:00
"description": "Landing page for BigchainDB",
"homepage": "https://www.bigchaindb.com",
"license": "(c) 2017 BigchainDB - All Rights Reserved",
"main": "gulpfile.babel.js",
"scripts": {
"start": "gulp",
2017-05-30 18:25:40 +02:00
"build": "gulp build --production",
"test": "stylelint _src/_assets/styles/**/*.scss"
},
"browserslist": [
"last 2 versions",
"Chrome >= 30",
"Safari >= 6.1",
"Firefox >= 35",
"Opera >= 32",
"iOS >= 8",
"Android >= 4",
"ie >= 10"
],
2015-12-19 20:56:04 +01:00
"dependencies": {
2018-04-09 14:42:18 +02:00
"bigchaindb-driver": "^4.0.0",
2018-04-26 10:02:22 +02:00
"bootstrap": "^4.1.0",
2018-03-01 13:05:37 +01:00
"clipboard": "^2.0.0",
"cookies-eu-banner": "^1.2.10",
2017-06-26 22:38:25 +02:00
"gumshoe": "github:cferdinandi/gumshoe",
"is-in-viewport": "^3.0.0",
2018-02-01 14:14:03 +01:00
"jquery": "^3.3.1",
2017-05-30 21:47:05 +02:00
"normalize-css": "^2.3.1",
"normalize-opentype.css": "^0.2.4",
2018-03-01 13:05:37 +01:00
"parsleyjs": "^2.8.1",
2018-04-05 19:12:00 +02:00
"popper.js": "^1.14.3",
2017-11-03 09:45:20 +01:00
"select2": "^4.0.5",
2017-12-22 11:57:22 +01:00
"smooth-scroll": "^12.1.5",
2017-08-08 12:18:52 +02:00
"svg4everybody": "^2.1.9",
"textarea-autogrow": "^1.0.0",
2018-04-10 15:47:30 +02:00
"vivus": "^0.4.3"
2015-12-19 20:56:04 +01:00
},
"devDependencies": {
2018-03-13 09:59:08 +01:00
"acorn": "^5.5.3",
2017-08-22 15:31:32 +02:00
"babel-core": "^6.26.0",
2017-12-22 11:57:22 +01:00
"babel-preset-env": "^1.6.1",
2018-04-26 10:02:22 +02:00
"browser-sync": "^2.23.7",
2016-01-30 14:56:26 +01:00
"concurrent-transform": "^1.0.0",
2018-04-04 11:08:54 +02:00
"critical": "^1.2.2",
2018-03-13 09:59:08 +01:00
"cross-spawn": "^6.0.5",
2017-07-18 11:38:13 +02:00
"del": "^3.0.0",
"gulp": "github:gulpjs/gulp#4.0",
2018-03-01 13:05:37 +01:00
"gulp-autoprefixer": "^5.0.0",
2018-03-13 09:59:08 +01:00
"gulp-clean-css": "^3.9.3",
2018-02-01 14:14:03 +01:00
"gulp-cli": "^2.0.1",
2017-12-22 11:57:22 +01:00
"gulp-concat": "^2.6.1",
2018-03-13 09:59:08 +01:00
"gulp-header": "^2.0.5",
2018-01-02 21:54:22 +01:00
"gulp-htmlmin": "^4.0.0",
2017-03-04 23:32:25 +01:00
"gulp-if": "^2.0.2",
2018-01-02 20:28:06 +01:00
"gulp-imagemin": "^4.1.0",
2017-12-22 11:57:22 +01:00
"gulp-include": "^2.3.1",
2017-03-04 23:32:25 +01:00
"gulp-load-plugins": "^1.5.0",
2016-01-30 14:56:26 +01:00
"gulp-rename": "^1.2.2",
2017-07-18 11:38:13 +02:00
"gulp-replace": "^0.6.1",
2018-01-02 20:28:06 +01:00
"gulp-rev": "^8.1.1",
2018-03-01 13:05:37 +01:00
"gulp-rev-replace": "^0.4.4",
2018-04-26 10:02:22 +02:00
"gulp-sass": "^4.0.1",
2018-02-01 14:14:03 +01:00
"gulp-sourcemaps": "^2.6.4",
2018-03-19 12:46:31 +01:00
"gulp-svg-sprite": "^1.4.0",
2017-05-30 10:15:15 +02:00
"gulp-uglify": "^3.0.0",
2017-12-22 11:57:22 +01:00
"gulp-util": "^3.0.8",
2018-01-02 20:28:06 +01:00
"gulp-zip": "^4.1.0",
2018-03-13 09:59:08 +01:00
"js-yaml": "^3.11.0",
"request": "^2.85.0",
2018-04-04 11:08:54 +02:00
"stylelint": "^9.2.0",
2018-03-01 13:05:37 +01:00
"stylelint-config-bigchaindb": "^1.2.1",
2018-03-13 09:59:08 +01:00
"stylelint-config-standard": "^18.2.0",
2018-03-29 13:14:49 +02:00
"uglify-es": "^3.3.10"
2015-12-19 20:56:04 +01:00
},
"engines": {
2017-05-30 10:15:15 +02:00
"node": ">=7.0.0"
2015-12-19 20:56:04 +01:00
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ascribe/bigchain-website"
}
}