forked from OpenLightingProject/open-fixture-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (112 loc) · 3.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "open-fixture-library",
"version": "1.0.0",
"description": "An open source library for lighting technology's fixture definition files",
"author": "Florian Edelmann <[email protected]>",
"contributors": [
"Felix Edelmann <[email protected]>"
],
"engines": {
"node": "20.x",
"npm": "10.x"
},
"type": "module",
"scripts": {
"dev": "nuxt dev",
"start": "nuxt start",
"build": "npm run build-without-nuxt && npm run build:nuxt",
"build-without-nuxt": "npm run build:register && npm run build:plugin-data && npm run build:test-fixtures && npm run build:model-docs && npm run build:api-docs",
"build:nuxt": "nuxt build",
"build:register": "node cli/build-register.js",
"build:plugin-data": "node cli/build-plugin-data.js",
"build:test-fixtures": "node cli/build-test-fixtures.js",
"build:model-docs": "jsdoc2md --private --files lib/model/*.js > docs/model-api.md",
"build:api-docs": "widdershins --code true --language_tabs --omitBody true --omitHeader true --resolve true --outfile docs/rest-api.md ui/api/openapi.json",
"clean": "rm -rf .nuxt tmp",
"update-package-lock": "rm package-lock.json && npm install && npm audit fix && npx browserslist@latest --update-db",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint .",
"lint:eslint-errors-only": "eslint --quiet .",
"lint:stylelint": "stylelint **/*.scss **/*.vue",
"test": "npm run lint && npm run test:fixtures-valid",
"test:dmx-value-scaling": "node tests/dmx-value-scaling.js",
"test:fixtures-valid": "node tests/fixtures-valid.js -a",
"test:http-status": "NODE_ENV=production node --tls-min-v1.0 tests/http-status.js",
"test:built-files-committed": "node tests/built-files-committed.js"
},
"dependencies": {
"@heise/embetty-server": "^2.0.3",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/robots": "^2.5.0",
"@nuxtjs/sitemap": "^2.4.0",
"@octokit/rest": "~21.0.1",
"a11y-dialog": "^8.0.4",
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"color-hash": "^2.0.2",
"color-name-list": "^10.24.0",
"cookie-universal-nuxt": "^2.2.2",
"cors": "^2.8.5",
"embetty-vue": "^2.0.1",
"express": "^4.19.2",
"jszip": "^3.10.1",
"node-env-file": "^0.1.8",
"nuxt": "~2.18.1",
"nuxt-helmet": "^3.0.0",
"openapi-backend": "^5.10.6",
"sanitize-filename": "^1.6.3",
"sass": "^1.77.8",
"sass-loader": "^10.5.2",
"scroll-into-view": "^1.16.2",
"svg-inline-loader": "^0.8.2",
"uuid": "^10.0.0",
"vue-form": "^4.10.3",
"vue-ts-types": "^1.6.2",
"vuedraggable": "^2.24.3",
"xml2js": "^0.6.2",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@stylistic/stylelint-config": "~1.0.1",
"broken-link-checker": "^0.7.8",
"dir-compare": "^5.0.0",
"disparity": "^3.2.0",
"eslint": "~8.57.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsdoc": "~48.0.2",
"eslint-plugin-jsonc": "~2.16.0",
"eslint-plugin-markdown": "~5.1.0",
"eslint-plugin-nuxt": "~4.0.0",
"eslint-plugin-promise": "~6.4.0",
"eslint-plugin-sonarjs": "~1.0.3",
"eslint-plugin-unicorn": "~54.0.0",
"eslint-plugin-vue": "~9.27.0",
"eslint-plugin-vuejs-accessibility": "~2.3.1",
"jsdoc-to-markdown": "^8.0.1",
"libxmljs": "^1.0.11",
"minimist": "^1.2.8",
"postcss-html": "^1.7.0",
"stylelint": "~16.7.0",
"stylelint-config-html": "~1.1.0",
"stylelint-config-recess-order": "~5.0.1",
"stylelint-config-standard-scss": "~13.1.0",
"terminate": "^2.6.1",
"widdershins": "^4.0.1"
},
"homepage": "https://open-fixture-library.org/",
"repository": {
"type": "git",
"url": "https://github.com/OpenLightingProject/open-fixture-library"
},
"keywords": [
"dmx",
"dmx512",
"ecue",
"fixture",
"fixtures",
"lighting",
"qlc"
],
"license": "MIT"
}