-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) Β· 3.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "rbx",
"version": "2.2.0",
"description": "The Comprehensive Bulma UI Framework for React",
"main": "dist/rbx.umd.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/dfee/rbx.git"
},
"scripts": {
"build": "make",
"docs:build": "make docs",
"docs": "make docs-dev",
"lint": "make lint",
"test": "make test"
},
"keywords": [
"react",
"bulma",
"bulma.io",
"typescript"
],
"author": "Devin Fee",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfee/rbx/issues"
},
"homepage": "https://github.com/dfee/rbx#readme",
"dependencies": {
"bulma": "0.7.5",
"bulma-badge": "^3.0.1",
"bulma-divider": "^0.2.0",
"bulma-pageloader": "^2.1.0",
"bulma-tooltip": "^2.0.2",
"classnames": "^2.2.6",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@types/classnames": "^2.2.8",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.14",
"@types/jest-diff": "^20.0.1",
"@types/jsdom": "^12.2.3",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.2",
"coveralls": "3.0.4",
"css-loader": "^3.0.0",
"docz": "^1.2.0",
"docz-theme-default": "^1.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"husky": "^2.4.1",
"jest": "24.8.0",
"jsdom": "15.1.1",
"lint-staged": "^8.2.1",
"node-sass": "^4.12.0",
"node-sass-tilde-importer": "^1.0.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6",
"rollup": "^1.15.5",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.9.0",
"rollup-plugin-terser": "^5.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslib": "^1.10.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^4.0.0",
"typescript": "3.5.2",
"typescript-tslint-plugin": "^0.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && make test"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx,ts,tsx,json,css,sass,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"**/public/*.min.js"
]
},
"prettier": {
"trailingComma": "all"
}
}