-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
76 lines (76 loc) · 1.87 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": "react-flexview",
"version": "6.0.1",
"description": "A react component to abstract over flexbox",
"files": [
"lib",
"src",
"examples",
"styleguide"
],
"main": "lib",
"typings": "lib",
"scripts": {
"test": "jest",
"build": "rm -rf lib && mkdir lib && tsc",
"prettier-write": "prettier --write '**/*.{js,ts,tsx}'",
"preversion": "yarn test",
"prepublishOnly": "yarn build",
"start": "styleguidist server",
"typecheck": "tsc --noEmit",
"release-version": "smooth-release"
},
"repository": {
"type": "git",
"url": "git@github.com:buildo/react-flexview"
},
"keywords": [
"react",
"react-component",
"flex",
"flexbox"
],
"author": "Francesco Cioria <francesco@buildo.io>",
"license": "ISC",
"bugs": {
"url": "https://github.com/buildo/react-flexview/issues"
},
"homepage": "https://github.com/buildo/react-flexview",
"dependencies": {
"prop-types": "^15.5.6"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/jest": "^21.1.8",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"babel-loader": "^7.1.2",
"babel-preset-buildo": "^0.1.1",
"file-loader": "^1.1.5",
"jest": "^21.2.1",
"prettier": "^1.16.1",
"progress-bar-webpack-plugin": "^1.10.0",
"react": "^16.13.1",
"react-docgen-typescript": "1.1.0",
"react-dom": "^16.13.1",
"react-styleguidist": "6.0.33",
"react-test-renderer": "^16.2.0",
"smooth-release": "^8.0.0",
"ts-jest": "^21.2.3",
"ts-loader": "^2.3.3",
"typescript": "^3.8.3",
"webpack": "3.5.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.*[.](test))[.](tsx?)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}