|
11 | 11 | "repository": "JetBrains/kotlin-playground", |
12 | 12 | "main": "dist/playground.min.js", |
13 | 13 | "files": [ |
14 | | - "dist" |
| 14 | + "dist", |
| 15 | + "!dist/REMOVE_ME.js*" |
15 | 16 | ], |
16 | 17 | "devDependencies": { |
17 | 18 | "@babel/cli": "^7.21.5", |
|
36 | 37 | "eslint": "^8.47.0", |
37 | 38 | "eslint-config-prettier": "^9.0.0", |
38 | 39 | "eslint-plugin-import": "^2.28.0", |
| 40 | + "eslint-plugin-prettier": "^5.0.1", |
39 | 41 | "fast-async": "7", |
40 | 42 | "fast-deep-equal": "^3.1.3", |
41 | 43 | "file-loader": "^6.2.0", |
42 | 44 | "flatten": "^1.0.2", |
43 | 45 | "github-markdown-css": "^3.0.1", |
44 | 46 | "html-webpack-plugin": "^5.5.3", |
| 47 | + "husky": "^8.0.3", |
45 | 48 | "is-empty-object": "^1.1.1", |
| 49 | + "lint-staged": "^15.0.2", |
46 | 50 | "lz-string": "^1.4.4", |
47 | 51 | "markdown-it": "^12.3.2", |
48 | 52 | "markdown-it-highlightjs": "^3.0.0", |
|
53 | 57 | "monkberry-loader": "4.0.9", |
54 | 58 | "postcss": "^8.4.31", |
55 | 59 | "postcss-loader": "^7.3.3", |
56 | | - "prettier": "^3.0.2", |
| 60 | + "prettier": "^3.0.3", |
57 | 61 | "query-string": "^6.5.0", |
58 | 62 | "sass": "^1.66.0", |
59 | 63 | "sass-loader": "^13.3.2", |
|
77 | 81 | "release:ci": "rm -rf dist && npm run build:all && $NPM_TOKEN=%env.NPM_TOKEN% npm publish", |
78 | 82 | "start": "webpack-dev-server --port 9002", |
79 | 83 | "lint": "eslint . --ext .ts", |
80 | | - "prettier": "prettier --write .", |
| 84 | + "fix": "eslint --fix --ext .ts .", |
81 | 85 | "test": "npm run build:all && npm run test:run", |
82 | 86 | "test:run": "playwright test", |
83 | | - "test:server": "node tests/utlis/server/index.js" |
| 87 | + "test:server": "node tests/utlis/server/index.js", |
| 88 | + "prepare": "husky install" |
84 | 89 | } |
85 | 90 | } |
0 commit comments