-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.08 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.08 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
{
"name": "@aodtechnologies/plugin-and-theme-update-proxy-components",
"version": "1.0.3",
"description": "Common components for Plugin and Theme Update Proxy",
"author": "AoD-Technologies",
"license": "GPL3",
"repository": "AoD-Technologies/plugin-and-theme-update-proxy-components",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "cross-env BABEL_ENV=production babel src -d lib",
"start": "cross-env BABEL_ENV=production babel src -d lib --watch",
"test": "node scripts/test.js"
},
"peerDependencies": {
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.17",
"clipboard-copy": "^4.0.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"typeface-roboto": "^1.1.13",
"uuid": "^9.0.0",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-react-constant-elements": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.3.1",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-preset-react-app": "^10.0.1",
"camelcase": "^7.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"dotenv-expand": "^9.0.0",
"eslint": "^8.29.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^12.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-resolve": "^29.3.1",
"jest-watch-typeahead": "^2.2.1",
"react-dev-utils": "^12.0.1"
},
"files": [
"src",
"lib"
],
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js",
"<rootDir>/src/**/*.{spec,test}.js"
],
"testEnvironment": "jest-environment-jsdom",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}