-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
72 lines (72 loc) · 2.43 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
{
"name": "@public-ui/designer",
"version": "1.7.23",
"license": "EUPL-1.2",
"homepage": "https://public-ui.github.io",
"repository": {
"type": "git",
"url": "https://github.com/public-ui/kolibri"
},
"bugs": {
"url": "https://github.com/public-ui/kolibri/issues",
"email": "kolibri@itzbund.de"
},
"author": {
"name": "Informationstechnikzentrum Bund",
"email": "kolibri@itzbund.de"
},
"scripts": {
"clean": "git clean -f -d -X",
"clean:locks": "rimraf package-lock.json pnpm-lock.yaml && npm run clean",
"build": "rimraf dist && cross-env NODE_ENV=production webpack",
"-coverage": "cross-env NODE_ENV=test nyc mocha",
"-cucumber": "cross-env NIGHTWATCH_ENV=chrome cucumber-js tests/cucumber/features/**/*.feature --require @babel/register --require cucumber.conf.js --require tests/cucumber/step-definitions --format node_modules/cucumber-pretty --format json:.reports/cucumber/report.json",
"-e2e": "nightwatch",
"format": "prettier --check src/** --no-error-on-unmatched-pattern",
"prepare": "npm-run-all prepare:*",
"prepare:components-assets": "cpy \"node_modules/@public-ui/components/assets/**/*\" public/assets --dot",
"prepare:themes-assets": "cpy \"node_modules/@public-ui/themes/assets/**/*\" public/assets --dot",
"serve": "cross-env NODE_ENV=development webpack serve --devtool=source-map --no-hot",
"start": "npm run serve -- --open",
"-test": "cross-env NODE_ENV=test mocha",
"unused": "ts-prune -e src"
},
"dependencies": {
"@public-ui/components": "workspace:*",
"@public-ui/solid": "workspace:*",
"@public-ui/themes": "workspace:*",
"adopted-style-sheets": "1.1.4",
"monaco-editor": "0.49.0",
"monaco-editor-webpack-plugin": "7.1.0",
"prettier": "2.8.8",
"register-service-worker": "1.7.2",
"solid-js": "1.8.17",
"world_countries_lists": "2.9.0"
},
"devDependencies": {
"@leanup/stack": "1.3.50",
"@leanup/stack-solid": "1.3.50",
"@leanup/stack-webpack": "1.3.50",
"@types/prettier": "2.7.3",
"@unocss/preset-mini": "0.58.9",
"@unocss/webpack": "0.58.9",
"ajv": "8.14.0",
"chromedriver": "124.0.4",
"cpy-cli": "5.0.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-no-loops": "0.3.0",
"nightwatch-axe-verbose": "2.3.0",
"npm-run-all": "4.1.5",
"playwright": "1.44.1",
"react-dev-utils": "12.0.1",
"rimraf": "5.0.7",
"ts-prune": "0.10.3",
"typescript": "5.4.5"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}