-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.07 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
77
{
"name": "@bloko/react",
"version": "0.0.10",
"license": "MIT",
"author": "Matheus Marques <[email protected]>",
"main": "index.js",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest --watchAll=false --coverage",
"test:watch": "jest --watch",
"build": "rollup -c",
"lint:check": "eslint --ext .js .",
"lint": "npm run lint:check -- --fix",
"predeploy": "rm -rf dist && npm run build",
"deploy": "np"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"@bloko/js": "0.0.13"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.3",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^10.1.0",
"@types/jest": "^25.2.1",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.3.0",
"jest-watch-typeahead": "^0.5.0",
"np": "^6.2.1",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.6.1",
"rollup-plugin-size-snapshot": "^0.11.0",
"rollup-plugin-terser": "^5.3.0"
},
"peerDependencies": {
"react": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bloko/bloko-react.git"
},
"bugs": {
"url": "https://github.com/bloko/bloko-react/issues"
},
"homepage": "https://github.com/bloko/bloko-react#readme",
"keywords": [
"bloko",
"bloko-react"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"typings": "types/index.d.ts"
}