-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "jsonata-visual-editor",
"version": "0.4.3",
"license": "MIT",
"author": "ReferralSaaSquatch.com, Inc.",
"description": "Visual editor for JSONata expressions. Themeable to your needs, default theme is Boostrap 4",
"keywords": [
"jsonata"
],
"source": "src/AstEditor.tsx",
"main": "dist/AstEditor.js",
"types": "dist/AstEditor.d.ts",
"files": [
"dist"
],
"dependencies": {
"jsonata": "1.7.0",
"jsonata-ui-core": "^1.7.12",
"unstated-next": "1.1.0"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"devDependencies": {
"@ant-design/icons": "2.1.1",
"@ant-design/icons-react": "2.0.1",
"@mrblenny/react-flow-chart": "0.0.8",
"@types/json-schema": "7.0.3",
"microbundle": "0.11.0",
"react": "16.8.6",
"react-bootstrap": "1.0.0-beta.14",
"react-dom": "16.8.6",
"react-scripts": "3.2.0",
"react-select": "3.0.8",
"styled-components": "4.4.0",
"typescript": "3.4.5"
},
"scripts": {
"start": "react-scripts start",
"build": "microbundle -f cjs",
"dev": "microbundle watch",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}