-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 2.65 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
{
"name": "mui-language-picker",
"version": "2.3.1",
"description": "Material UI language picker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist coverage",
"data": "node src/langPicker/getJsonData.js",
"index": "node src/langPicker/makeIndex2.js",
"build": "npm test && tsc",
"lint": "eslint src",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sillsdev/mui-language-picker.git"
},
"keywords": [
"language",
"bcp47",
"font",
"script"
],
"author": "Greg Trihus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sillsdev/mui-language-picker/issues"
},
"homepage": "https://github.com/sillsdev/mui-language-picker#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@testing-library/react": "^15.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.162",
"@types/node": "^16.18.61",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"axios": "^1.6.8",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5",
"write": "^2.0.0"
},
"peerdependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"prettier": {
"trailingComma": "es5"
},
"dependencies": {
"lodash": "^4.17.21"
},
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|.*\\.test)\\.(ts|tsx)$"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "18.20.5"
}
}