-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
75 lines (75 loc) · 2.51 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
{
"name": "@hods/docs",
"version": "0.5.1",
"description": "Documentation website.",
"private": true,
"main": "dist/server/index.js",
"scripts": {
"start": "node .",
"start:test": "COOKIES_SECURE=no node .",
"test": "npm run test:unit",
"test:ci": "npm test && npm run test:functional:ci",
"test:functional": "cypress run ${CYPRESS_PROJECT_ID:+--record ${CYPRESS_FLAGS}}",
"test:functional:ci": "start-server-and-test 'start:test' 'http-get://localhost:8080/readiness' test:functional",
"test:unit": "jest --passWithNoTests",
"build": "webpack",
"package:aws-lambda": "sls package -c aws.serverless.yml -p pkg/aws-lambda",
"heroku-postbuild": "npm run build",
"clean": "rm -rf .serverless dist pkg/aws-lambda",
"dev": "NODE_ENV=development node-hot --fork | bunyan",
"dev:ssr": "NODE_ENV=development SSR_ONLY=true node-hot --fork | bunyan",
"cypress": "cypress open",
"create": "plop",
"create:deployment": "plop deployment",
"create:page": "plop page"
},
"author": "Daniel A.C. Martin <[email protected]> (http://daniel-martin.co.uk/)",
"license": "MIT",
"engines": {
"node": ">=18",
"os": [
"darwin",
"linux"
]
},
"devDependencies": {
"@apollo/client": "3.11.9",
"@graphql-tools/schema": "10.0.7",
"@hods/components": "workspace:^0.5.1",
"@hods/sass-base": "workspace:^0.5.1",
"@not-govuk/anchor-list": "^0.15.3",
"@not-govuk/app-composer": "^0.15.3",
"@not-govuk/app-plop-pack": "^0.15.3",
"@not-govuk/asset-proxy": "^0.15.3",
"@not-govuk/client-renderer": "^0.15.3",
"@not-govuk/components": "^0.15.3",
"@not-govuk/engine": "^0.15.3",
"@not-govuk/router": "^0.15.3",
"@not-govuk/server-renderer": "^0.15.3",
"@not-govuk/user-info": "^0.15.3",
"@not-govuk/webpack-config": "^0.15.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/webpack-env": "1.18.5",
"bunyan": "1.8.15",
"cypress": "13.15.2",
"graphql": "15.9.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-hot-loader": "1.21.11",
"plop": "4.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet-async": "2.0.5",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"serverless": "3.39.0",
"start-server-and-test": "2.0.8",
"ts-jest": "29.2.5",
"typescript": "4.9.5",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-dev-middleware": "6.1.3",
"webpack-hot-middleware": "2.26.1"
}
}