forked from vovaspace/brandi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "brandi-workspace",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"test": "jest --colors",
"build:brandi": "cd packages/brandi && npm run build",
"build:brandi-react": "cd packages/brandi-react && npm run build",
"build": "npm run build:brandi && npm run build:brandi-react",
"code:lint": "prettier --check . && eslint .",
"code:fix": "prettier --write . && eslint --fix ."
},
"license": "ISC",
"author": "Vladimir Lewandowski <[email protected]> (https://vovaspace.com/)",
"homepage": "https://brandi.js.org",
"repository": {
"type": "git",
"url": "https://github.com/vovaspace/brandi.git"
},
"bugs": {
"url": "https://github.com/vovaspace/brandi/issues"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"esbuild": "^0.8.55",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.2"
}
}