-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
63 lines (63 loc) · 1.49 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
57
58
59
60
61
62
63
{
"name": "@app-config/monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"app-config-*",
"lcdev-*",
"tests/parsing-extensions/*",
"tests/webpack-projects/*",
"examples/*",
"docs"
],
"nohoist": [
"**/@types/react-native"
]
},
"scripts": {
"exec:all": "lerna exec",
"run:all": "lerna run --stream",
"build": "yarn build:cjs",
"build:es": "tsc -b tsconfig.es.json",
"build:cjs": "tsc -b tsconfig.json",
"build:all": "lerna run build",
"clean": "yarn run:all clean",
"test": "lerna run test -- --passWithNoTests",
"lint": "yarn run:all lint",
"fix": "yarn run:all fix",
"cli": "yarn --cwd ./app-config-cli start",
"docs:dev": "yarn --cwd ./docs dev",
"docs:build": "yarn --cwd ./docs build",
"postinstall": "cd ./examples/react-native-project && expo-yarn-workspaces postinstall"
},
"devDependencies": {
"@commitlint/cli": "11",
"@lcdev/commitlint": "1",
"@lcdev/eslint-config": "0.3",
"@lcdev/jest": "0.3",
"@lcdev/prettier": "0.1",
"@lcdev/tsconfig": "0.2",
"@types/jest": "26",
"eslint": "7",
"husky": "4",
"jest": "26",
"lerna": "3",
"prettier": "2",
"typescript": "4"
},
"prettier": "@lcdev/prettier",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@lcdev/commitlint"
]
},
"volta": {
"node": "16.15.0"
}
}