-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "ra-input-markdown",
"version": "1.3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/maluramichael/ra-input-markdown.git"
},
"module": "esm/index.js",
"author": "Michael Malura <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "rimraf ./lib && tsc --watch",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.12.3",
"babel-jest": "^27.1.1",
"css-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.1",
"ra-core": "^3.18.0",
"rimraf": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.2",
"webpack": "^5.52.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-admin": "^3.18.1",
"react-markdown": "^7.0.1",
"react-mde": "^11.5.0",
"showdown": "^1.9.1"
},
"peerDependencies": {
"ra-core": "^3.18.0"
},
"babel": {
"ignore": [
"node_modules/**"
],
"env": {
"test": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
}
}
}