-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
93 lines (93 loc) · 2.98 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
{
"name": "@sitegeist/monocle-ui",
"version": "1.0.0",
"description": "UI Components for Sitegeist.Monocle",
"main": "index.js",
"scripts": {
"generate": "node generate.css.mjs > Resources/Private/JavaScript/root.css",
"build": "pnpm generate && node esbuild.mjs",
"lint": "pnpm lint:scripts && pnpm lint:css",
"lint:css": "stylelint 'Resources/Private/JavaScript/**/*.css'",
"lint:scripts": "eslint Resources/Private/JavaScript/** --ext .js,.jsx,.ts,.tsx",
"test": "exit 0",
"watch": "pnpm generate && node esbuild.mjs --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sitegeist/Sitegeist.Monocle.git"
},
"keywords": [
"ui",
"styleguide",
"atomic-design"
],
"author": "Martin Ficzel <ficzel@sitegeist.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sitegeist/Sitegeist.Monocle/issues"
},
"homepage": "https://github.com/sitegeist/Sitegeist.Monocle#readme",
"devDependencies": {
"@redux-devtools/extension": "^3.3.0",
"@types/lodash.debounce": "^4.0.6",
"@types/mousetrap": "^1.6.5",
"@types/qrcode": "^1.3.5",
"@types/react": "^17.0.0",
"@types/react-copy-to-clipboard": "^5.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.15",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@friendsofreactjs/react-css-themr": "^4.3.2",
"@neos-project/brand": "^1.1.0",
"@neos-project/react-ui-components": "~8.3.0",
"classnames": "^2.5.1",
"html-prettify": "^1.0.3",
"immer": "^10.0.3",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.isfunction": "^3.0.9",
"lodash.omit": "^4.5.0",
"mousetrap": "^1.6.5",
"normalize.css": "^8.0.1",
"qrcode": "^1.4.4",
"react": "^17.0.1",
"react-addons-shallow-compare": "^15.6.3",
"react-click-outside": "^3.0.1",
"react-close-on-escape": "^3.0.0",
"react-copy-to-clipboard": "^5.0.2",
"react-css-themr": "^2.1.2",
"react-dom": "^17.0.1",
"react-keydown": "^1.9.12",
"react-portal": "^4.2.1",
"react-redux": "^7.2.2",
"react-syntax-highlighter": "^15.4.3",
"react-textarea-autosize": "^8.3.0",
"redux": "^4.0.5",
"redux-actions": "^2.0.3",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"typesafe-actions": "^5.1.0",
"uuid": "^9.0.1",
"zod": "^3.0.0"
},
"browserslist": [
"last 2 versions"
]
}