bedrock/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 строки
2.6 KiB
JSON
Исходник Обычный вид История

2014-01-18 04:52:54 +04:00
{
"name": "bedrock",
"version": "0.1.0",
"description": "Making mozilla.org awesome, one pebble at a time",
"private": true,
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
2021-11-10 22:53:38 +03:00
"@mozilla-protocol/core": "16.0.0",
2021-09-16 18:01:41 +03:00
"@sentry/browser": "^6.12.0",
"babel-loader": "^8.2.2",
2020-06-01 15:56:19 +03:00
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.2.0",
"css-minimizer-webpack-plugin": "3.0.2",
"mini-css-extract-plugin": "2.2.0",
"sass": "^1.42.1",
2020-06-01 15:56:19 +03:00
"sass-loader": "12.1.0",
"style-loader": "3.2.1",
"webpack": "5.51.1",
"webpack-cli": "4.8.0"
2014-01-18 04:52:54 +04:00
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/bedrock.git"
},
"author": "Mozilla",
"license": "MPL",
"bugs": {
"url": "https://bugzilla.mozilla.org/"
},
"devDependencies": {
"browser-sync": "^2.27.8",
2020-06-01 15:56:19 +03:00
"browser-sync-webpack-plugin": "^2.2.2",
"concurrently": "^6.0.1",
2022-03-21 16:51:09 +03:00
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"jasmine-core": "^4.0.1",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.2",
2020-06-01 15:56:19 +03:00
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
2022-03-21 16:51:09 +03:00
"prettier": "^2.6.0",
"sinon": "^13.0.1",
"stylelint": "^14.0.1",
"stylelint-config-standard-scss": "^2.0.1",
"svgo": "^2.7.0",
"tinypng-cli": "^0.0.7"
},
"scripts": {
2020-06-01 15:56:19 +03:00
"start": "concurrently --kill-others \"python manage.py runserver 0.0.0.0:8080\" \"npm run watch\"",
"lint-js": "./node_modules/.bin/eslint \"media/js/**/*.js\" \"tests/unit/spec/**/*.js\" webpack.config.js webpack.static.config.js",
"lint-css": "./node_modules/.bin/stylelint \"media/css/**/*.{css,scss}\"",
2020-10-29 12:21:34 +03:00
"lint-json": "./node_modules/.bin/eslint \"bedrock/base/templates/includes/structured-data/**/*.json\"",
"lint": "npm run lint-js && npm run lint-css && npm run lint-json && npm run prettier-check",
"pretest": "npm run lint",
2020-06-01 15:56:19 +03:00
"test": "./node_modules/.bin/karma start ./tests/unit/karma.conf.js",
"static": "webpack --config webpack.static.config.js --mode=production --bail",
"prebuild": "npm run static",
"build": "webpack --mode=production --bail",
"prewatch": "npm run static",
"watch": "webpack --mode=development --watch",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"stylelint-fix": "./node_modules/.bin/stylelint \"media/css/**/*.{css,scss}\" --fix",
"format": "npm run prettier && npm run stylelint-fix"
2020-06-01 15:56:19 +03:00
},
"browserslist": [
"defaults",
"IE 8"
]
2014-01-18 04:52:54 +04:00
}