-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.18 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.18 KB
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
{
"name": "zeppelin-design-system",
"private": true,
"description": "Design System Website",
"version": "0.1.0",
"author": "Jörg Schneider <joerg.schneider@z-lab.com>",
"keywords": [
"gatsby"
],
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^5.0.0-alpha.19",
"@material-ui/lab": "^5.0.0-alpha.19",
"@material-ui/styles": "^5.0.0-beta.3",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@reach/skip-nav": "^0.12.1",
"@zlab-de/zel-react": "^2.0.6",
"@zlab-de/zel-react-icons": "^2.0.3",
"clsx": "^1.1.1",
"gatsby": "^2.29.1",
"gatsby-image": "^2.8.0",
"gatsby-plugin-emotion": "^6.11.0",
"gatsby-plugin-gdpr-cookies": "^1.0.11",
"gatsby-plugin-manifest": "^2.9.0",
"gatsby-plugin-mdx": "^1.7.0",
"gatsby-plugin-offline": "^3.7.0",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-sharp": "^2.11.1",
"gatsby-remark-copy-linked-files": "^2.7.0",
"gatsby-remark-images": "^3.8.0",
"gatsby-remark-responsive-iframe": "^2.8.0",
"gatsby-source-filesystem": "^2.8.0",
"gatsby-theme-material-ui": "^1.0.13",
"gatsby-transformer-remark": "^2.13.0",
"gatsby-transformer-sharp": "^2.9.0",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-cookie-consent": "^6.2.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"request": "^2.88.2",
"zeppelin-element-library": "3.3.4"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:coverage": "jest --ci --coverage --runInBand --reporters=default --reporters=jest-junit",
"test": "jest -u --coverage",
"sonar-scanner": "sonar-scanner"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"yarn format",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"ie >= 9",
"not op_mini all"
],
"devDependencies": {
"@testing-library/cypress": "^7.0.3",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"axe-core": "^4.1.1",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.9.0",
"cypress": "^6.1.0",
"cypress-axe": "^0.12.0",
"eslint-config-react-app": "^6.0.0",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"start-server-and-test": "^1.11.6"
},
"repository": {
"type": "gitlab",
"url": "https://gitlab.com/z-lab-garching/design-system/design-system-website"
},
"bugs": {
"url": "https://jira.zeppelin.com/secure/RapidBoard.jspa?rapidView=296&projectKey=ZDS&view=detail"
},
"jest-junit": {
"outputDirectory": "./coverage",
"outputName": "results.xml"
}
}