hubl/package.json

81 lines
1.8 KiB
JSON
Raw Normal View History

2018-09-28 19:20:15 +00:00
{
2021-06-15 11:48:49 +00:00
"name": "orbit",
2018-09-28 19:20:15 +00:00
"version": "1.0.0",
2019-05-14 12:03:11 +00:00
"license": "MIT",
2020-04-03 18:02:49 +00:00
"repository": {
"type": "git",
2021-06-15 12:06:56 +00:00
"url": "https://git.startinblox.com/applications/hubl.git"
2020-04-03 18:02:49 +00:00
},
2019-05-14 12:03:11 +00:00
"scripts": {
2020-11-26 22:21:55 +00:00
"prebuild": "rimraf build",
"build": "cross-env NODE_ENV='production' node internal/parcel.js",
"watch": "rimraf build .cache && node internal/parcel.js",
2020-05-19 13:13:30 +00:00
"cypress:open": "cypress open",
"cypress:verify": "cypress verify",
"cypress:info": "cypress info",
"test": "cypress run"
2018-09-28 19:20:15 +00:00
},
2021-04-08 18:22:39 +00:00
"browserslist": [
"last 2 Chrome versions"
],
2020-04-03 18:02:49 +00:00
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "major",
"release": "major"
},
{
"type": "minor",
"release": "minor"
},
{
"type": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/gitlab"
]
},
2021-04-08 15:48:21 +00:00
"cache": {
"strategy": "inject",
"swSrc": "./src/service-worker.js",
"swDest": "service-worker.js",
"globPatterns": [
"**/*.{html,js,map,css,jpg,png,gif,webp,svg,eot,ttf,woff,woff2,json}"
],
"clearDist": false
},
2021-06-15 19:55:06 +00:00
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
2018-09-28 19:20:15 +00:00
"dependencies": {
2021-06-22 13:56:06 +00:00
"@startinblox/orbit-styling-framework": "^1.9.10",
2021-06-15 19:55:06 +00:00
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.3",
2021-06-15 12:21:14 +00:00
"fs-extra": "^10.0.0",
2019-11-14 16:34:37 +00:00
"normalize.css": "^8.0.1",
2021-04-08 18:22:39 +00:00
"parcel-bundler": "^1.12.5",
2021-04-08 15:48:21 +00:00
"parcel-plugin-sw-cache": "^0.3.1",
2021-06-15 12:21:14 +00:00
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"sass": "^1.35.0"
2020-05-19 13:13:30 +00:00
},
"devDependencies": {
2021-06-15 12:21:14 +00:00
"cypress": "^7.5.0",
"cypress-localstorage-commands": "^1.4.5"
2018-09-28 19:20:15 +00:00
}
}