-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.32 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.32 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "blank-cli",
"version": "0.1.95",
"description": "Blank is a microservices platform for rapid CRUD applicaitons developing",
"main": "index.js",
"scripts": {
"postinstall": "node ./postinstall.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./index.js",
"patch": "npm version patch && npm run push",
"push": "git push origin master --follow-tags && npm publish",
"next": "npm version prerelease && git push origin master --follow-tags && npm publish --tag next"
},
"bin": {
"blank": "./index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/getblank/Blank.git"
},
"keywords": [
"Blank",
"CRUD",
"microservices",
"golang",
"node",
"mongodb"
],
"author": {
"email": "info+blank@sclif.pro",
"name": "Evgeniy Kuvshinov & Evgeniy Ivakha"
},
"homepage": "https://getblank.github.io/site/",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/getblank/Blank/issues"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"blank-node-worker": "latest",
"blank-web-app": "latest",
"chokidar": "^1.5.0",
"dotenv": "^4.0.0",
"form-data": "^2.1.2",
"git-rev": "^0.2.1",
"jszip": "^3.0.0",
"less": "^3.8.1",
"logfmt": "^1.2.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"node-fetch": "^2.6.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"speed-date": "^0.2.1",
"tar-fs": "^1.14.0"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"comments": true,
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-logical-assignment-operators",
"@babel/plugin-proposal-optional-chaining",
[
"@babel/plugin-proposal-pipeline-operator",
{
"proposal": "minimal"
}
],
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-do-expressions",
"@babel/plugin-proposal-function-bind",
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"devDependencies": {
"@babel/cli": "^7.1.5"
}
}