-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
46 lines (46 loc) · 1.23 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn --cwd packages/react-scripts build",
"changelog": "lerna-changelog",
"create-react-kotlin-app": "tasks/cra.sh my-app",
"e2e": "tasks/e2e-simple.sh",
"publish": "tasks/release.sh",
"start": "yarn --cwd packages/react-scripts start",
"format": "prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules)/**/*.js'",
"precommit": "lint-staged"
},
"devDependencies": {
"@jetbrains/kotlin-extensions": "^1.0.1-pre.89",
"@jetbrains/kotlin-react": "^16.9.0-pre.91",
"@jetbrains/kotlin-react-dom": "^16.9.0-pre.89",
"core-js": "^3.20.2",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"kotlin": "~1.5.32",
"kotlinx-coroutines-core": "^1.5.2",
"kotlinx-html": "^0.7.2",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^16.12.0"
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"yarn.lock": [
"git rm --cached"
],
"engines": {
"node": ">=14.18.2",
"yarn": ">=1.0.0"
}
}