This repository has been archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
76 lines (76 loc) · 2.5 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
{
"name": "@zup-it/beagle-react",
"version": "2.1.0",
"main": "beagle-react/src/index.js",
"typings": "beagle-react/src/index.d.ts",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"homepage": "https://usebeagle.io",
"repository": "https://github.com/ZupIT/beagle-web-react",
"private": false,
"scripts": {
"fix-aliases": "node ./node_modules/tscpaths/cjs -p tsconfig.prod.json -s ./src -o ./dist",
"clean": "rm -fr dist",
"copy-files": "node bin/copy-files",
"build": "tsc --project tsconfig.prod.json --declaration && yarn copy-files && yarn fix-aliases",
"watch": "yarn nodemon --watch src -e ts,tsx --exec yarn build",
"check-types": "tsc --noEmit",
"test": "jest",
"lint": "eslint ./src/**/*.ts",
"link-beagle": "cd dist && yarn link && cd ../node_modules/react && yarn link && cd ../react-dom && yarn link && cd ../..",
"unlink-beagle": "cd dist && yarn unlink && cd ../node_modules/react && yarn unlink && cd ../react-dom && yarn unlink && cd ../..",
"auto-license": "ts-node --skip-project bin/auto-license.ts"
},
"dependencies": {
"@zup-it/beagle-web": "2.1.0",
"styled-components": "^5.1.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "25.1.4",
"@types/lodash": "^4.14.178",
"@types/react": "16.9.23",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"enzyme-to-json": "^3.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.19.0",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-mock-extended": "^1.0.10",
"jest-styled-components": "^7.0.3",
"lodash": "^4.17.21",
"nodemon": "^2.0.4",
"react": "16.14.0",
"react-dom": "16.14.0",
"ts-jest": "25.2.1",
"ts-node": "^10.4.0",
"tscpaths": "https://github.com/Tiagoperes/tscpaths.git#498769882091cfe6fd8c4067bb50843dc4ca551e",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org",
"directory": "dist"
},
"bin": {
"beagle": "./cli/init/index.js"
}
}