-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 KB
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
{
"name": "@experium/findy-ui",
"version": "1.9.0",
"description": "Findy-UI components",
"main": "lib/index.js",
"homepage": "https://experium.github.io/findy-ui",
"repository": "https://github.com/experium/findy-ui",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "yarn storybook",
"build": "yarn build-storybook",
"test": "react-scripts test",
"test:ci": "CI=true yarn test --reporters=jest-junit",
"eject": "react-scripts eject",
"package": "NODE_ENV=test ./node_modules/.bin/babel src/ui --out-dir ./lib",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public -o .out",
"deploy-storybook": "storybook-to-ghpages"
},
"dependencies": {
"@smooth-ui/core-sc": "^7.0.5",
"qrcode.react": "^0.9.3",
"react-select": "^2.1.2",
"react-spring": "^8.0.27",
"react-tabs": "^3.0.0",
"react-textfit": "^1.1.0",
"react-wow": "^1.0.0",
"storybook-addon-code": "^0.1.4",
"styled-icons": "^8.4.2"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": ">=16.8.4",
"react-dom": ">=16.8.4",
"styled-components": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.0.4",
"@storybook/addon-links": "^4.0.4",
"@storybook/react": "^4.0.4",
"@storybook/storybook-deployer": "^2.3.0",
"babel-loader": "^8.0.4",
"jest-dom": "^2.1.1",
"jest-junit": "^5.2.0",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "2.1.1",
"react-testing-library": "^5.3.1",
"styled-components": "^4.1.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest-junit": {
"suiteName": "jest tests",
"output": "./reports/junit.xml",
"usePathForSuiteName": "true"
}
}