This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
81 lines (81 loc) · 2.41 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
{
"name": "@bufferapp/components",
"version": "4.3.0",
"description": "A shared set of UI Components",
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"start": "start-storybook -p 9001",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint . --ignore-pattern coverage .storybook node_modules",
"test": "jest",
"test-update": "jest -u",
"test-watch": "jest --watch",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/buffer-components.git"
},
"author": "Harrison Harnisch <[email protected]> (https://hharnisc.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bufferapp/buffer-components/issues"
},
"homepage": "https://github.com/bufferapp/buffer-components#readme",
"peerDependencies": {
"react": ">= 0.14.0"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/.jest/require-context.js",
"<rootDir>/testSetup.js"
]
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.9.4",
"@storybook/addon-a11y": "5.1.11",
"@storybook/addon-actions": "5.1.11",
"@storybook/addon-storyshots": "5.1.11",
"@storybook/react": "5.1.11",
"@storybook/storybook-deployer": "^2.8.5",
"axe-core": "^2.6.1",
"babel-eslint": "10.0.3",
"babel-jest": "^25.4.0",
"babel-loader": "^8.1.0",
"babel-plugin-require-context-hook": "^1.0.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.4.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6"
},
"dependencies": {
"@bufferapp/react-keyframes": "0.2.5",
"moment": "^2.22.2",
"raf": "3.4.0",
"react-autocomplete": "1.7.2",
"react-day-picker": "7.2.3"
},
"publishConfig": {
"access": "public"
}
}