forked from FormidableLabs/victory-native-xl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.53 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
{
"name": "victory-native-xl-monorepo",
"private": true,
"workspaces": [
"lib",
"example"
],
"license": "MIT",
"react-native": "src/index",
"scripts": {
"lint": "eslint --ext .js,.ts,.tsx example lib",
"typecheck": "tsc --noEmit",
"build": "shx cp README.md ./lib/README.md && yarn workspace victory-native build",
"dev:lib": "yarn workspace victory-native dev",
"dev:example": "yarn workspace example start",
"dev": "concurrently -n lib,example -c blue,green \"yarn dev:lib\" \"yarn dev:example\"",
"dev:ios": "concurrently -n lib,example -c blue,green \"yarn dev:lib\" \"yarn dev:example --ios\"",
"test": "yarn workspace victory-native test",
"test:watch": "yarn workspace victory-native test:watch",
"changeset": "changeset",
"check:code": "yarn lint && yarn typecheck && yarn test",
"version": "yarn changeset version && yarn install --no-frozen-lockfile"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.1",
"shx": "^0.3.4",
"typescript": "^5.1.6"
}
}