This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
138 lines (138 loc) · 3.55 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "CRviz",
"version": "0.3.27-dev",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "1.1.8",
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-brands-svg-icons": "5.15.3",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"boom": "7.3.0",
"chokidar": "3.5.1",
"classnames": "2.3.1",
"cryptiles": "4.1.3",
"css-element-queries": "1.2.3",
"d3": "6.6.2",
"d3-scale-chromatic": "2.0.0",
"d3-tip": "0.9.1",
"debug": "4.3.1",
"deep-extend": "0.6.0",
"extend": "3.0.2",
"filtrex": "0.5.4",
"hawk": "9.0.0",
"http-signature": "1.3.5",
"json-refs": "3.0.15",
"lodash.clonedeep": "4.5.0",
"lodash.debounce": "4.0.8",
"lunr": "2.3.9",
"mini.css": "3.0.1",
"normalize.css": "8.0.1",
"ramda": "0.27.1",
"rc": "1.2.8",
"react": "17.0.2",
"react-beautiful-dnd": "13.1.0",
"react-compound-slider": "3.3.1",
"react-dom": "17.0.2",
"react-modal": "3.12.1",
"react-portal-tooltip": "2.4.7",
"react-redux": "7.2.3",
"react-scripts": "4.0.3",
"react-spinners": "0.10.6",
"redux": "4.0.5",
"redux-actions": "2.6.5",
"redux-mock-store": "1.5.4",
"redux-observable": "1.2.0",
"request": "2.88.2",
"rxjs": "6.6.7",
"rxjs-compat": "6.6.7",
"tar-pack": "3.4.1",
"uuid": "8.3.2"
},
"scripts": {
"start": "REACT_APP_VERSION=$npm_package_version PORT=5000 react-scripts start",
"build": "REACT_APP_VERSION=$npm_package_version react-scripts build",
"coverage": "nyc report --reporter=text-lcov > coverage/coverage.lcov && codecov",
"test": "NODE_ENV=test NODE_PATH=./src nyc mocha src/**/*.test.js*",
"eject": "react-scripts eject",
"deploy": "gh-pages -d build",
"deploy-experimental": "gh-pages -r https://github.com/rashley-iqt/CRviz -d build",
"lint": "eslint --ext=js --ext=jsx .",
"release": "standard-version"
},
"pre-commit": {
"run": [
"lint",
"test"
]
},
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"exclude": [
"src/**/*.test.js*",
"test/**"
],
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false,
"instrument": false
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"devDependencies": {
"@babel/core": "7.13.15",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-react": "7.13.13",
"@babel/register": "7.13.14",
"@fortawesome/fontawesome-free": "5.15.3",
"chai": "4.3.4",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.24.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.23.2",
"gh-pages": "3.1.0",
"jsdom-global": "3.0.2",
"mocha": "8.3.2",
"nyc": "15.1.0",
"pre-commit": "1.2.2",
"readdirp": "3.6.0",
"sinon": "10.0.0",
"typescript": "4.2.4"
}
}