hubl/package.json

75 lines
1.7 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
},
2018-09-28 19:20:15 +00:00
"dependencies": {
2021-06-15 12:02:32 +00:00
"@startinblox/orbit-styling-framework": "^1.9.9",
"cross-env": "^7.0.3",
2020-11-26 22:21:55 +00:00
"fs-extra": "^9.0.1",
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-05-20 07:38:10 +00:00
"pug": "^3.0.0",
2020-11-26 22:21:55 +00:00
"rimraf": "^2.7.1",
"sass": "^1.29.0"
2020-05-19 13:13:30 +00:00
},
"devDependencies": {
2020-11-26 22:21:55 +00:00
"cypress": "^5.6.0",
"cypress-localstorage-commands": "^1.2.4"
2018-09-28 19:20:15 +00:00
}
}