-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
91 lines (91 loc) · 2.85 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "kotlin-playground",
"version": "1.30.0",
"description": "Self-contained component to embed in websites for running Kotlin code",
"keywords": [
"kotlin",
"runnable code"
],
"author": "JetBrains",
"license": "Apache-2.0",
"repository": "JetBrains/kotlin-playground",
"main": "dist/playground.min.js",
"files": [
"dist",
"!dist/REMOVE_ME.js*"
],
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-transform-runtime": "~7.22.4",
"@babel/preset-env": "~7.22.4",
"@babel/runtime-corejs2": "~7.22.2",
"@playwright/test": "^1.40.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^9.1.3",
"babel-plugin-async-to-promises": "^1.0.5",
"ci-publish": "^1.3.1",
"codemirror": "^5.49.0",
"css-loader": "^6.8.1",
"debounce": "^1.2.0",
"deepmerge": "^1.5.0",
"dotenv": "^16.3.1",
"es6-promise": "^4.2.6",
"es6-set": "^0.1.5",
"escape-html": "^1.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.1",
"fast-async": "7",
"fast-deep-equal": "^3.1.3",
"file-loader": "^6.2.0",
"flatten": "^1.0.2",
"github-markdown-css": "^3.0.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"is-empty-object": "^1.1.1",
"lint-staged": "^15.0.2",
"lz-string": "^1.4.4",
"markdown-it": "^12.3.2",
"markdown-it-highlightjs": "^3.0.0",
"mime": "^3.0.0",
"monkberry": "4.0.8",
"monkberry-directives": "4.0.8",
"monkberry-events": "4.0.8",
"monkberry-loader": "4.0.9",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.3",
"query-string": "^6.5.0",
"sass": "^1.66.0",
"sass-loader": "^13.3.2",
"shelljs": "^0.8.3",
"style-loader": "^3.3.3",
"svg-fill-loader": "^0.0.8",
"svg-url-loader": "^8.0.0",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"url-search-params": "1.1.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build": "webpack",
"build:all": "npm run build && npm run build:production",
"build:production": "webpack --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 9002",
"start-with-local-compiler": "webpack-dev-server --port 9002 --env webDemoUrl='//localhost:8080'",
"lint": "eslint . --ext .ts",
"fix": "eslint --fix --ext .ts .",
"test": "npm run build:all && npm run test:run",
"test:run": "playwright test",
"test:server": "node tests/utlis/server/index.js",
"prepare": "husky install"
}
}