This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 2.6 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
{
"name": "react-loads",
"version": "9.2.5",
"description": "A simple React component to handle loading state",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/react-loads.min.js",
"types": "ts/index.d.ts",
"files": [
"es",
"lib",
"umd",
"ts"
],
"license": "MIT",
"repository": "jxom/react-loads",
"author": {
"name": "jxom",
"email": "jakemoxey@gmail.com",
"url": "jxom.io"
},
"scripts": {
"build": "yarn build:lib && yarn build:types",
"build:lib": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf es/ lib/ dist/ ts/ umd/",
"develop": "rollup -c -w",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"test": "jest src/",
"prepublish": "yarn lint && yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs/"
},
"keywords": [
"react",
"loads",
"loading",
"state"
],
"peerDependencies": {
"@types/react": ">=16.8.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/plugin-proposal-object-rest-spread": "7.3.1",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@medipass/eslint-config-react-medipass": "8.4.1",
"@storybook/react": "5.0.11",
"@testing-library/react": "9.5.0",
"@types/jest": "24.0.6",
"axios": "0.18.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.0.0",
"babel-loader": "8.0.5",
"eslint": "5.16.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-typescript": "0.14.0",
"fannypack": "4.21.25",
"fast-deep-equal": "2.0.1",
"jest": "24.0.0",
"jest-dom": "3.0.1",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-hot-loader": "4.6.5",
"react-test-renderer": "16.7.0",
"rimraf": "2.6.3",
"rollup": "1.1.2",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-ignore": "1.0.4",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "4.0.0",
"rollup-plugin-replace": "2.1.0",
"rollup-plugin-terser": "4.0.3",
"store": "2.0.12",
"typescript": "3.2.4",
"typescript-eslint-parser": "22.0.0"
},
"eslintConfig": {
"extends": [
"@medipass/react-medipass"
]
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
}
}