-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.58 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
{
"name": "vivien",
"version": "0.0.1",
"description": "",
"keywords": [],
"main": "dist/index.js",
"scripts": {
"start": "nodemon --exec yarn develop",
"develop": "babel-node sandbox",
"debug": "babel-node sandbox"
},
"babel": {
"presets": [
"@babel/preset-flow",
[
"babel-preset-edge",
{
"target": "node",
"modules": "cjs",
"pipelineOperator": {
"proposal": "minimal"
}
}
]
],
"plugins": [
"babel-plugin-jsx-control-statements",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "minimal"
}
],
"@babel/plugin-proposal-export-default-from",
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "context.create",
"pragmaFrag": "Block",
"throwIfNamespace": false
}
]
]
},
"devDependencies": {
"@babel/core": "7.0.0-beta.51",
"@babel/node": "7.0.0-beta.51",
"@babel/plugin-proposal-export-default-from": "7.0.0-beta.51",
"@babel/plugin-proposal-pipeline-operator": "7.0.0-beta.51",
"@babel/preset-flow": "^7.0.0",
"babel-plugin-jsx-control-statements": "3.2.8",
"babel-preset-edge": "4.5.1",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"finalhandler": "^1.1.1",
"nodemon": "1.17.5",
"router": "^1.3.3"
},
"dependencies": {
"body": "5.1.0",
"console.table": "0.10.0",
"kind-of": "^6.0.2",
"route-parser": "^0.0.5",
"signale": "1.2.1",
"warning": "4.0.1"
}
}