-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 3.18 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
{
"name": "react-components",
"version": "0.19.3",
"description": "A library of standard Virtru components for React applications",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"style": "dist/styles.css",
"scripts": {
"build": "rollup --config config/rollup.config.js",
"prepare": "npm run build",
"start": "npm run storybook",
"test": "jest",
"test:vrt": "build-storybook && loki --require-reference --reactUri file:./storybook-static",
"pretest": "npm run lint",
"storybook": "start-storybook -p 6006",
"lint": "eslint . && stylelint ./**/*.css",
"prettify": "eslint . --fix"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-knobs": "^5.3.17",
"@storybook/react": "^5.3.17",
"@testing-library/react": "^8.0.8",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-jest-enzyme": "^6.0.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26",
"jest-config-virtru": "git+ssh://[email protected]/virtru/jest-config-virtru#semver:^2",
"jest-dom": "^3.2.2",
"loki": "^0.20.3",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^8.0.10",
"postcss-hexrgba": "^1.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-svg-loader": "^3.0.3",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-react-svg": "^3.0.3",
"style-loader": "^0.23.1",
"stylelint": "^13.5.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-selector-tag-no-without-class": "^2.0.0",
"url-loader": "^2.0.0",
"virtru-typography": "git+ssh://[email protected]/virtru/virtru-typography.git#semver:^0.3.1"
},
"dependencies": {
"animejs": "^3.0.1",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react-select": "^3.0.4",
"react-tabs": "^3.0.0",
"react-toggle": "^4.1.1",
"virtru-design-params": "git+ssh://[email protected]/virtru/virtru-design-params.git#semver:1.0.0"
},
"peerDependencies": {
"react": "^16.3",
"react-dom": "^16.3",
"virtru-typography": "^0.3.1"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.docker",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false,
"fitWindow": false
},
"chrome.iphone7": {
"target": "chrome.docker",
"preset": "iPhone 7"
}
}
}
}