-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.4 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
{
"name": "nd-component-factory",
"version": "1.0.0",
"description": "NetzeDigital Component Factory: Based on React Material UI & Next.js with a NetzeBW Flavor",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"build": "rm -rf ./dist && npx tsc --project tsconfig.export.json && cp package.template.json ./dist/package.json && cp -R ./src/theme/fonts/. ./dist/fonts",
"pack": "cd ./dist && npm pack",
"publish": "cd ./dist && npm publish"
},
"keywords": [
"NetzeBW, ND Component Factory, Next.js, React, Material UI, Theme"
],
"author": "Bertil Ebker, Florian Matz, Christian Hartl",
"license": "ISC",
"peerDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@material-ui/system": "^4.9.14",
"next": "^9.5.3",
"react-dom": "16.13.1",
"react": "16.13.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@material-ui/system": "^4.9.14",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/react": "^6.0.21",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"next": "^9.5.2",
"prettier": "^2.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-is": "^16.13.1",
"storybook-addon-next-router": "^2.0.0",
"styled-components": "^5.2.0",
"typescript": "^4.0.2"
}
}