-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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
{
"description": "Modern image component for react-native-web",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"example"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/th3rdwave/web-image.git"
},
"author": "Janic Duplessis <[email protected]>",
"scripts": {
"test": "yarn validate:prettier && yarn validate:eslint && yarn validate:typescript && yarn validate:jest",
"validate:eslint": "eslint \"{example,packages}/*/src/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --noEmit",
"validate:prettier": "prettier \"{example,packages}/*/src/**/*.{js,ts,tsx}\" --check",
"validate:jest": "jest",
"prerelease": "lerna run clean",
"release": "lerna publish",
"example": "yarn --cwd example"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@react-native-community/eslint-config": "^3.0.0",
"@types/jest": "^27.0.1",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.1",
"lerna": "^4.0.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
}
}