-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.74 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.74 KB
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
{
"name": "unforgettable-sdk-monorepo",
"version": "1.1.0-rc.1",
"private": true,
"workspaces": [
"packages/*",
"examples/react"
],
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
},
"scripts": {
"build": "yarn workspaces foreach --no-private -pv --topological-dev --verbose --all run build",
"lint": "eslint ./packages",
"version": "node scripts/sync-version.js && (echo $(yarn package-version) | grep -q 'rc' || rlx changelog release $(yarn package-version)) && git add .",
"publish:stable": "yarn build && yarn workspaces foreach --no-private --all exec yarn npm publish",
"publish:rc": "yarn build && yarn workspaces foreach --no-private --all exec yarn npm publish --tag next",
"package-version": "node -p \"require('./package.json').version\"",
"test": "yarn test:ts && yarn test:swift && yarn test:kotlin",
"test:ts": "yarn workspaces foreach -pv --no-private --all run test",
"test:swift": "cd packages/ios && swift test",
"test:kotlin": "cd packages/android && ./gradlew test"
},
"devDependencies": {
"@napalmpapalam/rlx": "0.4.1",
"@types/jest": "30.0.0",
"@types/node": "22.14.0",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"chalk": "4.1.2",
"dotenv": "16.4.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-unused-imports": "4.1.4",
"jest": "30.0.0",
"prettier": "3.5.3",
"ts-node": "10.9.2",
"typescript": "5.8.2",
"yorkie": "2.0.0"
},
"packageManager": "yarn@4.9.2"
}