-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "grommet-icons-site",
"version": "0.1.1",
"main": "src/js/index.js",
"description": "website for grommet icons",
"homepage": "https://grommet.github.io/grommet-icons-site/",
"bugs": "https://github.com/grommet/grommet-icons-site/issues",
"repository": {
"type": "git",
"url": "https://github.com/grommet/grommet-icons-site.git"
},
"license": "Apache-2.0",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "cross-env NODE_ENV=production webpack --mode production",
"lint": "eslint src",
"generate-html": "cross-env NODE_ENV=ssr babel-node ./tools/generate-html",
"release-gh-pages": "cross-env NODE_ENV=ssr babel-node ./tools/release-gh-pages"
},
"dependencies": {
"@ungap/url-search-params": "0.2.2",
"grommet": "https://github.com/grommet/grommet/tarball/stable",
"grommet-icons": "https://github.com/grommet/grommet-icons/tarball/stable",
"grommet-theme-hpe": "^5.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@webpack-cli/serve": "^2.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-grommet": "^0.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"fs-extra": "^11.2.0",
"html-minifier": "^4.0.0",
"pre-commit": "^1.2.2",
"simple-git": "^3.21.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"collectCoverageFrom": [
"src/**/*.{js}"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/templates/"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|templates|node_modules)[/\\\\]"
]
},
"pre-commit": [
"lint"
]
}