9ca6091b1d
#KT-38929 fixed
35 lines
1.1 KiB
Groovy
Vendored
35 lines
1.1 KiB
Groovy
Vendored
plugins {
|
|
id 'org.jetbrains.kotlin.js' version 'KOTLIN_VERSION'
|
|
}
|
|
group = 'me.user'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
jcenter()
|
|
maven {
|
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
|
}
|
|
maven {
|
|
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
|
|
}
|
|
}
|
|
dependencies {
|
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-js'
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-js'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-html-js:0.7.1'
|
|
implementation 'org.jetbrains:kotlin-react:16.13.0-pre.93-kotlin-KOTLIN_VERSION'
|
|
implementation 'org.jetbrains:kotlin-react-dom:16.13.0-pre.93-kotlin-KOTLIN_VERSION'
|
|
implementation npm('react','16.13.0')
|
|
implementation npm('react-dom','16.13.0')
|
|
implementation npm('react-is','16.13.0')
|
|
implementation 'org.jetbrains:kotlin-styled:1.0.0-pre.93-kotlin-KOTLIN_VERSION'
|
|
implementation npm('styled-components','5.0.0')
|
|
implementation npm('inline-style-prefixer','5.1.0')
|
|
}
|
|
kotlin {
|
|
js {
|
|
browser {}
|
|
binaries.executable()
|
|
}
|
|
} |