This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.78 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
{
"name": "covid-employer-response",
"version": "1.0.0",
"license": "GPL-3.0",
"scripts": {
"build": "razzle build",
"build:stats": "cross-env STATS=yes razzle build && webpack-bundle-analyzer build\\public\\stats.json",
"debug": "razzle start --inspect --inspect-port=9230",
"lint:ts": "eslint --ext=js,jsx,ts,tsx src",
"pretest": "node ploc.js",
"start": "razzle start",
"start:prod": "node build/server.js",
"test": "razzle test --env=jsdom",
"test:ci": "npm run pretest && cross-env CI=true razzle test --env=jsdom --coverage --watchAll=false",
"test:coverage": "npm run pretest && razzle test --env=jsdom --coverage"
},
"dependencies": {
"accept-language-parser": "^1.5.0",
"deepmerge": "^4.2.2",
"express": "^4.17.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.10.4",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@types/accept-language-parser": "^1.5.1",
"@types/express": "^4.11.1",
"@types/jest": "^26.0.16",
"@types/node": "^12.12.31",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-redux": "^7.1.12",
"@types/react-router-dom": "^5.1.6",
"@types/react-test-renderer": "^17.0.0",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"cross-env": "^7.0.2",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-unused-imports": "^1.0.1",
"jest": "^26.6.3",
"razzle": "^3.3.8",
"razzle-plugin-scss": "^3.3.8",
"razzle-plugin-typescript": "^3.3.8",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typescript": "4.0.3",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-stats-plugin": "^0.3.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 75,
"statements": 75
}
},
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}"
],
"testMatch": [
"<rootDir>/src/**/*.(spec|test).(ts|tsx|js|jsx)"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest",
"\\.css$": "<rootDir>/node_modules/razzle/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/node_modules/razzle/config/jest/fileTransform.js"
}
}
}