-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.87 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.87 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
{
"name": "peas-row-commons",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"main": "index.js",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"check-types": "npx tsc",
"commitlint": "commitlint --from=$(git rev-parse $(git cherry origin/main | head -n 1 | cut -c 3-)^1)",
"db-migrate-dev": "npm run migrate-dev --workspace @pins/peas-row-commons-database",
"db-migrate-prod": "npm run migrate-prod --workspace @pins/peas-row-commons-database",
"db-generate": "npm run generate --workspace @pins/peas-row-commons-database",
"db-seed": "npm run seed --workspace @pins/peas-row-commons-database",
"db-seed-prod": "npm run seed-prod --workspace @pins/peas-row-commons-database",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "npx eslint .",
"prepare": "node .husky/install.mjs",
"test": "node --test",
"test-coverage": "node --test --experimental-test-coverage"
},
"dependencies": {
"@azure/functions": "^4.12.0",
"@azure/identity": "^4.13.1",
"@azure/msal-node": "^5.0.4",
"@azure/storage-blob": "^12.31.0",
"@ministryofjustice/frontend": "^7.1.0",
"@planning-inspectorate/dynamic-forms": "^3.8.3",
"@prisma/adapter-mssql": "^7.4.2",
"@prisma/client": "^7.4.2",
"accessible-autocomplete": "^3.0.1",
"archiver": "^7.0.1",
"body-parser": "^2.2.2",
"cfb": "^1.2.2",
"connect-redis": "^9.0.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.18.2",
"express-validator": "^7.3.0",
"file-type": "^21.3.4",
"govuk-frontend": "^5.13.0",
"helmet": "^8.1.0",
"multer": "^2.1.1",
"nunjucks": "^3.2.4",
"pdf-lib": "^1.17.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"puppeteer": "^24.40.0",
"redis": "^5.8.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@faker-js/faker": "^10.3.0",
"@microsoft/microsoft-graph-types": "^2.43.1",
"@types/archiver": "^7.0.0",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/multer": "^2.0.0",
"@types/node": "^25.4.0",
"@types/nunjucks": "^3.2.6",
"cookie-parser": "^1.4.7",
"cypress": "^15.12.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"nodemon": "^3.1.11",
"playwright-core": "^1.58.2",
"prettier": "^3.8.2",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^7.7.0",
"sass": "^1.93.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,ts,json,md,prisma,yml,yaml,scss}": [
"prettier --write"
]
}
}