forked from WebDevN-F/thenativeweb-ux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.29 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
117
{
"name": "thenativeweb-ux",
"version": "5.9.30",
"description": "thenativeweb-ux provides UI components for the native web applications.",
"contributors": [
{
"name": "Golo Roden",
"email": "[email protected]"
},
{
"name": "Matthias Wagler",
"email": "[email protected]"
},
{
"name": "Hannes Leutloff",
"email": "[email protected]"
},
{
"name": "Valentina Rotkin",
"email": "[email protected]"
}
],
"main": "build/lib/index.js",
"module": "build/esm/lib/index.js",
"types": "build/lib/index.d.ts",
"bin": {
"ux": "build/lib/bin/ux.js"
},
"dependencies": {
"@babel/runtime-corejs2": "7.16.5",
"@types/animejs": "3.1.4",
"@types/color": "3.0.2",
"@types/fs-extra": "9.0.13",
"@types/globby": "9.1.0",
"@types/jsdom": "16.2.13",
"@types/lodash": "4.14.178",
"@types/mozjpeg": "5.0.0",
"@types/node": "16.11.12",
"@types/pngquant-bin": "4.0.0",
"@types/react-highlight-words": "0.16.3",
"@types/react-syntax-highlighter": "13.5.2",
"@types/react-transition-group": "4.4.3",
"@types/uuid": "8.3.3",
"@types/xml2js": "0.4.9",
"animejs": "3.2.1",
"classnames": "2.3.1",
"color": "4.1.0",
"command-line-interface": "4.0.21",
"csstype": "3.0.10",
"fs-extra": "10.0.0",
"globby": "11.0.4",
"jsdom": "19.0.0",
"lodash": "4.17.21",
"mozjpeg": "7.1.1",
"p-queue": "6.6.2",
"pngquant-bin": "5.0.2",
"pretty-format": "27.4.2",
"react-highlight-words": "0.17.0",
"react-jss": "10.7.1",
"react-syntax-highlighter": "15.4.5",
"react-transition-group": "4.4.2",
"svgo": "2.8.0",
"untildify": "4.0.0",
"uuid": "8.3.2",
"validate-value": "9.1.7",
"xml2js": "0.4.23"
},
"devDependencies": {
"@next/bundle-analyzer": "12.0.7",
"@types/classnames": "2.3.1",
"@types/common-tags": "1.8.1",
"@types/express": "4.17.13",
"@types/puppeteer": "5.4.4",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"@types/shelljs": "0.8.10",
"@types/webpack": "5.28.0",
"assertthat": "6.3.14",
"axios": "0.24.0",
"buntstift": "5.0.1",
"common-tags": "1.8.2",
"express": "4.17.2",
"get-port": "5.1.1",
"isolated": "3.0.25",
"next": "11.0.1",
"processenv": "3.0.9",
"puppeteer": "13.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-release-configuration": "2.0.5",
"shelljs": "0.8.4",
"typescript": "5.7.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"start-styleguide": "cd styleguide && npx next --port 6060",
"build-styleguide": "cd styleguide && npx next build && npx next export",
"analyse-bundle": "cd styleguide && ANALYSE_BUNDLE=true npx next build && npx next export",
"postbuild": "npx tsc -p tsconfig.esm.json",
"start-sample-application": "cd test/shared/sampleApplication && npx next",
"export-sample-application": "cd test/shared/sampleApplication && npx next build && npx next export"
},
"repository": {
"type": "git",
"url": "git://github.com/thenativeweb/thenativeweb-ux.git"
},
"keywords": [
"react",
"thenativeweb",
"ui",
"ux"
],
"license": "LGPL-3.0"
}