-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 982 Bytes
/
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
{
"name": "metaframe-editor-json",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "npx parcel index.html metaframe.json",
"build": "npx parcel build index.html metaframe.json"
},
"license": "MIT",
"dependencies": {
"gh-pages": "^2.0.1",
"metaframe": "^0.2.0",
"parcel": "^1.12.3",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-json-view": "^1.19.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"babel-preset-nano-react-app": "^0.1.0",
"parcel-bundler": "^1.11.0",
"parcel-plugin-static-files-copy": "^2.1.2"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}