-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
87 lines (87 loc) · 2.58 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
{
"name": "dddeastmidlands",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier:check": "prettier --check \"**/*.js\"",
"prettier:fix": "prettier --write \"**/*.js\"",
"test": "jest --maxWorkers=1",
"test:watch": "jest --watch --maxWorkers=1",
"test:coverage": "jest --ci --runInBand --reporters=default --reporters=jest-junit --collectCoverage=true",
"pa11y-ci": "pa11y-ci 'out/**/*.html'",
"pa11y-ci-sitemap": "pa11y-ci --sitemap http://localhost:5000/sitemap.xml"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"babel-plugin-macros": "^3.1.0",
"bootstrap": "^5.3.3",
"next": "^15.1.4",
"next-pwa": "^5.6.0",
"perfume.js": "^9.4.0",
"postcss": "^8.4.49",
"react": "^18.3.1",
"react-bootstrap": "^2.10.7",
"react-dom": "^18.3.1",
"react-ga": "^3.3.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@next/eslint-plugin-next": "^15.1.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"babel-core": "^6.26.3",
"babel-jest": "^29.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^10.4.2",
"eslint-plugin-react": "^7.37.3",
"glob": "^11.0.0",
"globby": "^14.0.2",
"husky": "^9.1.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-transform-css": "^6.0.2",
"next-compose-plugins": "^2.2.1",
"pa11y-ci": "^3.1.0",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"sass": "^1.83.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/DDDEastMidlandsLimited/dddem-web.git"
},
"bugs": {
"url": "https://github.com/DDDEastMidlandsLimited/dddem-web/issues"
},
"jest-junit": {
"outputDirectory": "./test-results/junit",
"outputName": "results.xml"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}