This repository was archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.42 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
{
"name": "digital-government",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=14.19.1",
"npm": ">=6.14.16"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@apollo/react-hooks": "^4.0.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.18",
"@testing-library/user-event": "^7.2.1",
"@types/react": "^16.14.25",
"antd": "^4.20.1",
"apollo-boost": "^0.4.9",
"dateformat": "^4.6.3",
"graphql": "^14.7.0",
"html-react-parser": "^1.4.12",
"link-check": "^5.1.0",
"react": "^16.14.0",
"react-apollo": "^3.1.5",
"react-document-title": "^2.0.3",
"react-dom": "^16.14.0",
"react-flexbox-grid": "^2.1.2",
"react-hook-form": "^7.30.0",
"react-markdown": "^4.3.1",
"react-player": "^2.10.0",
"react-router-dom": "^5.3.1",
"react-scripts": "^4.0.3",
"react-scroll": "^1.8.9",
"styled-components": "^5.3.5"
},
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "DISABLE_ESLINT_PLUGIN=true react-scripts test",
"url-test": "react-scripts test --testMatch [ '**/?(*.)+(urltest).[jt]s?(x)' ]",
"eject": "react-scripts eject",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:test": "start-server-and-test start http://localhost:3000 cy:run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"cypress": "^4.11.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.6.2",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^17.0.2",
"start-server-and-test": "^1.14.0",
"typescript": "^3.9.10"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
}
}