-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@secretarium/moai",
"version": "0.0.13",
"private": true,
"description": "Privacy preserving QRCode based checking application",
"repository": "https://github.com/secretarium/moai-app",
"author": "Florian Guitton <[email protected]> (https://github.com/fguitton)",
"license": "MIT",
"bugs": {
"url": "https://github.com/secretarium/moai-app/issues"
},
"homepage": "https://github.com/secretarium/moai-app#readme",
"packman": "[email protected]",
"scripts": {
"lint": "yarn workspaces foreach run lint",
"lint:fix": "yarn workspaces foreach run lint:fix",
"build": "yarn workspaces foreach run build",
"start": "yarn workspaces foreach -p -i run start",
"web": "yarn workspace @secretarium/moai-expo web",
"android": "yarn workspace @secretarium/moai-expo android",
"ios": "yarn workspace @secretarium/moai-expo ios",
"test": "yarn workspaces foreach run test",
"test:mutation": "yarn workspaces foreach run test:mutation",
"preinstall": "node ./scripts/hintYarn.js",
"postinstall": "husky install && cd ./packages/mobile && expo-yarn-workspaces postinstall",
"release": "release-it",
"prepare": "husky install"
},
"keywords": [
"secretarium",
"check-in"
],
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@commitlint/config-conventional": "12.1.1",
"@release-it/conventional-changelog": "2.0.1",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"commitlint": "12.1.1",
"eslint": "7.24.0",
"eslint-config-react-app": "6.0.0",
"eslint-config-recommended": "4.1.0",
"eslint-plugin-flowtype": "5.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"expo-cli": "4.3.5",
"expo-yarn-workspaces": "1.3.1",
"husky": "6.0.0",
"release-it": "14.6.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release-it": {
"git": {
"commitMessage": "chore: Release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "./eslint.config.js"
},
"dependencies": {
"expo-localization": "9.1.0",
"i18n-js": "3.8.0"
}
}