This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.63 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
{
"name": "@digicatapult/sqnc-hyproof-client",
"version": "0.5.39",
"description": "User interface for HyProof",
"homepage": "https://github.com/digicatapult/sqnc-hyproof-client",
"main": "src/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint --ext .js,.mjs .",
"lint:fix": "eslint --ext .js ./src --fix",
"init": "./scripts/initialise_demo.mjs",
"dev": "webpack-dev-server --mode=development",
"start": "serve -s ./build",
"build": "$(npm root)/.bin/webpack --mode=production",
"depcheck": "depcheck",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/sqnc-hyproof-client.git"
},
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"author": "Digital Catapult",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/digicatapult/sqnc-hyproof-client/issues"
},
"resolutions": {
"styled-components": "^6.1.8"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@tanstack/react-query": "^5.32.0",
"axios": "^1.6.8",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"depcheck": "^1.4.7",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.6.0",
"prettier": "^3.2.5",
"serve": "^14.2.3",
"style-loader": "^3.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@digicatapult/ui-component-library": "^0.19.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-id-generator": "^3.0.2",
"react-router-dom": "^6.23.0",
"styled-components": "^6.1.8"
}
}