-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "listsofdata",
"version": "1.0.0",
"main": "index.js",
"author": "Robert Yuen",
"license": "MIT",
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-typescript": "7.10.1",
"@babel/runtime": "^7.10.3",
"@testing-library/dom": "^7.16.3",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.3.0",
"@types/jest": "^26.0.0",
"@types/react": "16.9.38",
"@types/react-dom": "16.9.8",
"@types/react-router-dom": "5.1.5",
"@types/styled-components": "^5.1.0",
"@types/uuid": "8.0.0",
"@types/validator": "^13.0.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"cross-env": "7.0.2",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.0",
"file-loader": "6.0.0",
"fork-ts-checker-webpack-plugin": "5.0.4",
"html-webpack-plugin": "4.3.0",
"jest": "^26.0.1",
"jsdom": "^16.2.2",
"npm-check-updates": "^7.0.1",
"path": "0.12.7",
"prettier": "2.0.5",
"react-test-renderer": "16.13.1",
"regenerator-runtime": "^0.13.5",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "4.2.2"
},
"dependencies": {
"@babel/core": "7.10.3",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.3",
"@babel/polyfill": "7.10.1",
"@babel/preset-env": "7.10.3",
"@babel/preset-react": "7.10.1",
"@sentry/browser": "5.18.0",
"@sentry/types": "5.18.0",
"axios": "0.19.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.0.1",
"babel-plugin-dynamic-import-node": "2.3.3",
"chart.js": "^2.9.3",
"json-loader": "0.5.7",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-axe": "3.5.2",
"react-dom": "^16.13.1",
"react-hot-loader": "4.12.21",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"typescript": "^3.9.5",
"uuid": "8.1.0",
"validator": "13.1.1",
"webpack-bundle-analyzer": "3.8.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"start": "webpack",
"build": "cross-env NODE_ENV=prod webpack --config webpack.config.prod.js",
"dev": "cross-env NODE_ENV=dev webpack-dev-server --config webpack.config.dev.js --open",
"dev:hot": "npm run dev -- --hot",
"format": "prettier --write \"src/*.{js,jsx,css,json}\" ",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"test": "jest --collectCoverage=true --detectOpenHandles",
"dev:test": "jest --watch",
"updateall": "ncu -u"
}
}