-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.21 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-genomix",
"version": "1.3.0",
"description": "GenomiX React components",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"dist",
"es",
"lib",
"umd"
],
"scripts": {
"build": "yarn build-css && nwb build-react-component",
"build-css": "cd src/stylesheets && node-sass-chokidar main.scss -o ./ --output-style compressed && mv main.css ../../dist/react-genomix.min.css",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "node tests/index.js",
"test:coverage": "node tests/index.js --coverage",
"test:watch": "node tests/index.js --watch"
},
"dependencies": {
"faker": "4.1.0",
"immutability-helper": "3.0.2",
"moment": "2.22.2",
"react-base-table": "1.9.3",
"react-csv": "2.0.3",
"react-virtualized-auto-sizer": "1.0.2",
"semantic-ui-css": "2.4.1",
"semantic-ui-react": "0.88.2"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "23.6.0",
"babel-preset-react-app": "9.1.2",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"jest": "24.1.0",
"jest-pnp-resolver": "1.2.1",
"jest-resolve": "25.5.0",
"node-sass-chokidar": "1.4.0",
"nwb": "0.24.5",
"prettier": "2.0.5",
"query-string": "6.12.1",
"react": "^16.8.0",
"react-app-polyfill": "1.0.6",
"react-dom": "^16.8.0",
"react-router-dom": "5.1.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"resolver": "jest-pnp-resolver",
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/tests/config/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/tests/config/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"author": "Michael A. Gonzalez",
"homepage": "https://github.com/chopdgd/react-genomix",
"license": "MIT",
"repository": "https://github.com/chopdgd/react-genomix",
"keywords": [
"react-component",
"genomics"
]
}