forked from JetBrains/kotlin-playground
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.19 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
68
69
70
71
72
{
"name": "arrow-playground",
"version": "1.23.3",
"description": "Self-contained component to embed in websites for running Kotlin, Arrow library aware, code",
"keywords": [
"kotlin",
"runnable code",
"arrow"
],
"author": "Arrow",
"contributors": [
"Juan Valencia Calvellido <juanvalencia@calvellido.es> (http://calvellido.es)"
],
"license": "Apache-2.0",
"repository": "arrow-kt/arrow-playground",
"main": "dist/playground.min.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "~7.4.4",
"@babel/plugin-transform-runtime": "~7.4.4",
"@babel/preset-env": "~7.4.4",
"@babel/runtime-corejs2": "~7.4.4",
"babel-loader": "v8.0.6",
"babel-plugin-async-to-promises": "^1.0.5",
"ci-publish": "^1.3.1",
"codemirror": "^5.49.0",
"css-loader": "2.1.1",
"debounce": "^1.2.0",
"deepmerge": "^1.5.0",
"es6-promise": "^4.2.6",
"es6-set": "^0.1.5",
"escape-html": "^1.0.3",
"fast-async": "7",
"flatten": "^1.0.2",
"github-markdown-css": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"is-empty-object": "^1.1.1",
"markdown-it": "^8.4.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.9",
"node-sass": "^4.12.0",
"postcss-loader": "3.0.0",
"query-string": "^6.5.0",
"sass-loader": "7.1.0",
"shelljs": "^0.8.3",
"style-loader": "^0.23.1",
"svg-fill-loader": "0.0.8",
"svg-url-loader": "^2.3.2",
"url-search-params": "1.1.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"whatwg-fetch": "^3.0.0",
"fast-deep-equal": "^3.1.3"
},
"scripts": {
"build": "webpack",
"build:kotlin": "webpack -p --env.production",
"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",
"start": "webpack-dev-server --port 9001",
"start:kotlin": "webpack-dev-server --port 9001"
}
}