-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 946 Bytes
/
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
{
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"expo": "^52.0.0",
"jest": "^29.3.1",
"jest-expo": "~52.0.2",
"lerna": "^8.0.2",
"react": "18.3.1",
"react-native": "0.76.7",
"verdaccio": "^5.10.2"
},
"scripts": {
"test:unit": "jest",
"test:lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
"local-npm:start": "verdaccio --config ./verdaccio-config.yml",
"local-npm:publish-all": "lerna publish --yes --force-publish --exact --no-push --no-git-reset --no-git-tag-version --registry 'http://localhost:4873'"
},
"private": true,
"workspaces": [
"packages/*",
"features/fixtures/test-app"
]
}