forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.39 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.39 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
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
{
"name": "tracker-frontend",
"version": "0.1.0",
"scripts": {
"build": "webpack --env.mode=production --config webpack.config.js",
"dev": "webpack-dev-server --hot --env.mode=development",
"start": "node index.js",
"test": "jest",
"lint": "eslint src",
"dbg": "node --inspect-brk node_modules/.bin/jest --runInBand --no-cache",
"extract": "lingui extract",
"compile": "lingui compile"
},
"dependencies": {
"@apollo/client": "^3.2.0",
"@babel/runtime": "^7.11.2",
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@lingui/react": "^3.0.0-13",
"babel-plugin-macros": "^2.8.0",
"body-parser": "^1.19.0",
"d3": "^6.1.1",
"d3-scale": "^3.2.2",
"d3-selection": "^2.0.0",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"express": "^4.17.1",
"fast-deep-equal": "^3.1.3",
"formik": "^2.1.5",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"isomorphic-unfetch": "^3.0.0",
"make-plural": "^6.2.2",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-swipe": "^6.0.4",
"react-table": "^7.5.0",
"react-test-renderer": "^16.13.1",
"recharts": "^2.0.0-beta.6",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@hot-loader/react-dom": "^16.13.0",
"@lingui/cli": "^3.0.0-13",
"@lingui/loader": "^3.0.0-13",
"@lingui/macro": "^3.0.0-13",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^3.4.1",
"acorn": "^8.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-macros": "^2.8.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.1.0",
"fs-extra": "^9.0.1",
"html-webpack-plugin": "4.4.1",
"jest": "^26.4.2",
"jest-emotion": "^10.0.32",
"mq-polyfill": "^1.1.8",
"prettier": "^2.1.2",
"react-hot-loader": "^4.12.21",
"react-test-renderer": "^16.13.1",
"supertest": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"chokidar": "^3.4.0"
},
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"setupFilesAfterEnv": [
"./src/setupTests.js"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}