diff options
author | Marcin Aman <maman@virtuslab.com> | 2020-05-28 16:17:13 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-06-04 11:25:34 +0200 |
commit | b614604effda51ca7c76c8901be78ced62b642b2 (patch) | |
tree | 971fc02905cf3e0c75ef4fb00d93ce72b43936cb /plugins/base/frontend/package.json | |
parent | 4065a65fe3294e0ddf54f5756380f7dc1aa032b2 (diff) | |
download | dokka-b614604effda51ca7c76c8901be78ced62b642b2.tar.gz dokka-b614604effda51ca7c76c8901be78ced62b642b2.tar.bz2 dokka-b614604effda51ca7c76c8901be78ced62b642b2.zip |
Update TS migration to current dev, move to a common package, rename to frontend
Diffstat (limited to 'plugins/base/frontend/package.json')
-rw-r--r-- | plugins/base/frontend/package.json | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/plugins/base/frontend/package.json b/plugins/base/frontend/package.json new file mode 100644 index 00000000..120d7f34 --- /dev/null +++ b/plugins/base/frontend/package.json @@ -0,0 +1,57 @@ +{ + "name": "search", + "version": "1.0.0", + "private": true, + "config": { + "components": "./src/main/components", + "dist": "./dist" + }, + "scripts": { + "build": "webpack --mode=production --devtool sourcemap", + "lint": "eslint . && npm run stylelint", + "stylelint": "stylelint --ignore-path .gitignore ./src/main/**/*.scss", + "start": "webpack-dev-server -d --history-api-fallback --inline --hot --colors --port 9010" + }, + "babel": { + "presets": [ + [ + "@jetbrains/jetbrains", + { + "useBuiltIns": "usage" + } + ] + ] + }, + "dependencies": { + "@babel/core": "^7.8.3", + "@jetbrains/babel-preset-jetbrains": "^2.1.4", + "@jetbrains/logos": "1.1.5", + "@jetbrains/ring-ui": "2.1.16", + "@types/node": "^12.12.36", + "@types/react": "^16.9.0", + "@types/react-dom": "^16.9.0", + "babel-loader": "^8.0.6", + "postcss-import": "^12.0.1", + "postcss-preset-env": "^6.7.0", + "react": "^16.12.0", + "react-dom": "^16.12.0", + "redbox-react": "^1.6.0", + "ts-loader": "^7.0.0", + "typescript": "^3.8.3", + "webpack": "^4.41.5", + "webpack-cli": "^3.3.10", + "webpack-dev-server": "^3.10.1" + }, + "devDependencies": { + "@jetbrains/stylelint-config": "^2.0.0", + "babel-eslint": "^10.0.3", + "eslint": "^6.8.0", + "sass": "^1.26.3", + "sass-loader": "^8.0.2", + "stylelint": "^13.3.2", + "yo": "^3.1.1" + }, + "engines": { + "node": ">=8.0.0" + } +} |