1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

59 lines
1.8 KiB
JSON
Raw Normal View History

2021-03-13 02:31:28 -07:00
{
"name": "netbox",
"version": "0.1.0",
"main": "dist/netbox.js",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"netbox-graphiql"
],
2021-03-13 02:31:28 -07:00
"scripts": {
2021-07-06 17:53:11 -07:00
"bundle": "node bundle.js",
"bundle:styles": "node bundle.js --styles",
"bundle:scripts": "node bundle.js --scripts",
"format": "yarn format:scripts && yarn format:styles",
"format:scripts": "prettier -w src/**/*.ts",
"format:styles": "prettier -w styles/**/*.scss",
"validate": "yarn validate:types && yarn validate:lint",
"validate:lint": "eslint -c .eslintrc ./src/**/*.ts",
"validate:types": "tsc --noEmit",
"validate:formatting": "yarn validate:formatting:scripts && yarn validate:formatting:styles",
"validate:formatting:styles": "prettier -c styles/**/*.scss",
"validate:formatting:scripts": "prettier -c src/**/*.ts"
2021-03-13 02:31:28 -07:00
},
"dependencies": {
2022-10-04 15:02:37 +02:00
"@mdi/font": "^7.0.96",
"@popperjs/core": "^2.11.6",
2021-08-30 11:02:47 -07:00
"bootstrap": "~5.0.2",
2022-10-04 15:02:37 +02:00
"clipboard": "^2.0.11",
"color2k": "^2.0.0",
"dayjs": "^1.11.5",
"flatpickr": "4.6.13",
"htmx.org": "^1.8.0",
"just-debounce-it": "^3.1.1",
2021-03-13 02:31:28 -07:00
"masonry-layout": "^4.2.2",
2022-10-04 15:02:37 +02:00
"query-string": "^7.1.1",
"sass": "^1.55.0",
"simplebar": "^5.3.9",
"slim-select": "^1.27.1"
2021-03-13 02:31:28 -07:00
},
"devDependencies": {
2022-10-04 15:02:37 +02:00
"@types/bootstrap": "^5.0.17",
"@types/cookie": "^0.5.1",
"@types/masonry-layout": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
2022-10-04 22:00:32 +02:00
"esbuild": "^0.13.15",
2022-10-04 15:02:37 +02:00
"esbuild-sass-plugin": "^2.3.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"resolutions": {
2022-10-04 15:02:37 +02:00
"@types/bootstrap/**/@popperjs/core": "^2.11.6"
}
2022-10-04 22:00:32 +02:00
}