-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
{
"name": "monorepo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "./scripts/turbo-run-scoped.sh start",
"build": "./scripts/turbo-run-scoped.sh build",
"dev": "./scripts/turbo-run-scoped.sh dev",
"prepare": "husky install",
"lintStaged": "lint-staged",
"test": "turbo run test:once",
"stop-if-git-changes": "git diff-index --quiet HEAD --",
"prerelease": "yarn run stop-if-git-changes && yarn build && lerna version --no-push",
"release": "HUSKY_SKIP_HOOKS=1 lerna publish from-git --yes",
"postrelease": "git push --follow-tags origin",
"cargo:build": "cd ./rust && cargo build",
"cargo:dev": "./scripts/cargo-dev.sh",
"cargo:run": "./scripts/cargo-scoped.sh run",
"cargo:doc": "cd ./rust && cargo doc"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/heap": "^0.2.28",
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.3",
"bonsole": "^1.0.3",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "2.4.1",
"tsutils": "^3.21.0",
"turbo": "latest"
},
"lint-staged": {
"packages/*/src/**/*.(ts|tsx|js|jsx|html|css)": [
"prettier --write"
]
},
"workspaces": [
"packages/*",
"internal-packages/*",
"apps/*",
"rust/*",
"packages/ts-cli-generator/examples/*"
],
"packageManager": "[email protected]",
"dependencies": {
"expo": "44.0.0",
"react-native": "0.64.3",
"typescript": "^4.5.4"
}
}