-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "@mgcrea/react-native-propel-kit",
"repository": "github:mgcrea/react-native-propel-kit",
"version": "1.0.7",
"license": "MIT",
"private": true,
"scripts": {
"test": "npm run ts:check && npm run pretty:check && npm run jest",
"jest": "jest --runInBand",
"ts:check": "tsc --noEmit",
"pretty:check": "prettier --check 'packages/*/{src,test}/*.{ts,tsx}'",
"pretty:write": "prettier --write 'packages/*/{src,test}/*.{ts,tsx}'",
"lint": "eslint --ext .ts,.tsx packages/*/src",
"clean": "rm -rf node_modules; scripts/runPackages.sh --eval \"rm -rf node_modules\"",
"build": "scripts/runPackages.sh \"npm run build\"",
"publish": "scripts/runPackages.sh \"npm publish --non-interactive --access public\"",
"website": "cd website; GIT_USER=mgcrea CURRENT_BRANCH=master USE_SSH=true npm run deploy; cd -",
"version": "scripts/setVersion.sh"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@react-native-community/eslint-config": "^3.0.1",
"@react-native-community/eslint-plugin": "^1.1.0",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/react-native": "^6.0.1-alpha.7",
"@tsconfig/react-native": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-plugin-module-name-mapper": "^1.2.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"react": "^18.2.0",
"react-native": "^0.66.4",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
}
}