forked from RIP21/react-simplemde-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 1.71 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
{
"name": "@SquadcastHub/react-simplemde-editor",
"homepage": "http://www.benrlodge.com",
"version": "4.1.8",
"author": "Ben Lodge",
"repository": "github:SquadcastHub/react-simplemde-editor",
"contributors": [
{
"name": "Andrii Los",
"url": "https://github.com/RIP21",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"files": [
"lib",
"typings",
"src"
],
"dependencies": {
"@SquadcastHub/easymde": "2.17.4",
"@types/codemirror": "^0.0.88",
"@types/marked": "^0.7.4"
},
"peerDependencies": {
"react": ">=15",
"react-dom": ">=15"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.9.6",
"@types/codemirror": "^0.0.88",
"@types/node": "^12.12.31",
"@types/react": "^16.7.21",
"babel-core": "^7.0.0-bridge.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-scripts": "^3.4.1",
"typescript": "^3.2.4"
},
"scripts": {
"prebuild:lib": "tsc",
"build:lib": "NODE_ENV=production babel src --out-dir lib --source-maps --extensions \".js\",\".jsx\",\".ts\",\".tsx\"",
"prepare": "yarn build:lib",
"demo": "cd demo && yarn install && yarn start"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6.12"
}
}
],
[
"babel-preset-react-app",
{
"helpers": false,
"absoluteRuntime": false
}
],
[
"@babel/preset-typescript",
{
"isTSX": true,
"allExtensions": true
}
]
]
}
}