-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.51 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
{
"name": "react-fidelity-ui",
"version": "0.1.2",
"description": "High fidelity UI pack for ReactJS",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"dependencies": {
"body-scroll-lock": "^2.6.4",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"@types/body-scroll-lock": "^2.6.1",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.9.1",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^5.0.2",
"jest": "^25.1.0",
"postcss-custom-media": "^7.0.8",
"postcss-easy-import": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"react-scripts-ts": "^3.1.0",
"rollup": "^1.29.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.4",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-watch": "^4.3.1",
"stylelint": "^13.0.0",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"body-scroll-lock": "^2.6.4",
"classnames": "^2.2.6",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"files": [
"dist"
],
"scripts": {
"start": "rollup -c --watch",
"build": "rollup -c",
"test": "jest"
},
"keywords": [
"react",
"react-ui",
"ui-pack",
"ui-components"
],
"jest": {
"rootDir": "./src",
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "jsdom",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup/jest.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/assets",
"<rootDir>/__tests__/declarations",
"<rootDir>/__tests__/setup"
]
},
"author": "Neven Dyulgerov",
"license": "MIT"
}