-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.39 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
{
"name": "@sonatype/react-shared-components-gallery",
"version": "12.12.2",
"description": "Gallery application to demonstrate usage and look of Sonatype shared UI components",
"main": "src/main.ts",
"scripts": {
"start": "npm-run-all lint webpack-dev-server",
"build": "npm-run-all ci-lint webpack copy-assets",
"copy-assets": "cpx \"{src/index.html,src/assets/images/favicon*}\" dist",
"lint": "eslint \"./src/**/*.{js,ts}{,x}\"",
"ci-lint": "eslint \"./src/**/*.{js,ts}{,x}\" --max-warnings=0",
"lint-tests": "eslint \"visualtests/*.js\"",
"ci-lint-tests": "eslint \"visualtests/*.js\" --max-warnings=0",
"webpack": "webpack --env production --mode=production",
"webpack-dev-server": "webpack serve",
"test": "npm-run-all check-install lint-tests build jest",
"ci-test": "npm-run-all check-install ci-lint-tests build jest",
"check-install": "yarn install --check-files --frozen-lockfile",
"jest": "jest --testTimeout=120000",
"clean": "rimraf dist webpack-modules test-results"
},
"repository": {
"type": "git",
"url": "https://github.com/sonatype/sonatype-react-shared-components.git",
"directory": "gallery"
},
"author": "Sonatype, Inc.",
"license": "EPL-2.0",
"devDependencies": {
"@axe-core/puppeteer": "^4.5.2",
"@babel/runtime": "^7.20.6",
"@types/classnames": "^2.2.11",
"@types/debounce": "^1.2.0",
"@types/ramda": "^0.27.64",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/react-syntax-highlighter": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"chromedriver": "^88.0.0",
"copy-modules-webpack-plugin": "^2.2.1",
"cpx": "^1.5.0",
"css-loader": "^6.7.1",
"eslint": "^7.19.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"jest": "^29.3.1",
"jest-image-snapshot": "^6.1.0",
"jest-junit": "^15.0.0",
"mini-css-extract-plugin": "^2.6.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^19.4.1",
"resolve-url-loader": "^5.0.0",
"rimraf": "^3.0.2",
"sass": "^1.37.5",
"sass-loader": "^12.6.0",
"source-map-loader": "^3.0.1",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.2.8",
"typescript": "^4.5.5",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.18",
"@nivo/bar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@nivo/line": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@nivo/tooltip": "^0.80.0",
"@react-hook/debounce": "^4.0.0",
"@sonatype/react-shared-components": "portal:../lib/dist",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"compare-versions": "^4.1.3",
"core-js": "^3.8.3",
"es6-object-assign": "^1.1.0",
"es6-set": "^0.1.5",
"prop-types": "^15.7.2",
"query-string": "^6.13.8",
"ramda": "^0.28.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-syntax-highlighter": "^15.4.3"
},
"packageManager": "yarn@3.5.1"
}