forked from JetBrains/kotlin-playground
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.94 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
{
"name": "quicktype-playground",
"version": "1.1.1",
"description":
"Self-contained component to embed in websites for generating code from JSON",
"keywords": ["quicktype", "json"],
"author": "quicktype",
"license": "Apache-2.0",
"repository": "quicktype/quicktype-playground",
"main": "dist/playground.min.js",
"files": ["dist"],
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"ci-publish": "^1.3.0",
"codemirror": "5.35.0",
"css-loader": "0.28.4",
"debounce": "^1.1.0",
"deepmerge": "^1.5.0",
"es6-map": "^0.1.5",
"es6-set": "^0.1.5",
"escape-string-regexp": "^1.0.5",
"github-markdown-css": "^2.8.0",
"html-webpack-plugin": "^2.30.1",
"markdown-it": "^8.3.2",
"markdown-it-highlightjs": "^3.0.0",
"monkberry": "4.0.8",
"monkberry-directives": "4.0.8",
"monkberry-events": "4.0.8",
"monkberry-loader": "4.0.8",
"node-sass": "^4.5.3",
"postcss-loader": "2.0.6",
"query-string": "4.3.4",
"sass-loader": "6.0.6",
"shelljs": "^0.7.8",
"style-loader": "^0.18.2",
"svg-fill-loader": "0.0.8",
"svg-url-loader": "^2.1.1",
"to-case": "^2.0.0",
"url-search-params": "0.7.1",
"webpack": "^3.5.2",
"webpack-dev-server": "^2.7.1",
"whatwg-fetch": "^2.0.3"
},
"scripts": {
"build": "webpack",
"build:all": "npm run build && npm run build:production",
"build:production": "webpack -p --env.production",
"copy-examples": "node utils/copy-examples",
"release:ci":
"rm -rf dist && npm run build:all && $NPM_TOKEN=%env.NPM_TOKEN% npm publish",
"release": "rm -rf dist && npm run build:all && npm publish",
"start": "webpack-dev-server --port 9000"
},
"dependencies": {
"quicktype": "^13.0.10"
}
}