-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
100 lines (100 loc) · 3.02 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@asl/pages",
"version": "31.7.4",
"description": "",
"main": "index.js",
"style": "pages/common/assets/sass/style.scss",
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint . --ext jsx,js",
"test:unit": "CSRF=false jest",
"prebuild": "mkdir -p ./pages/common/dist/css/pdf",
"build": "npm run build:css",
"build:css": "npm run build:css:app && npm run build:css:pdf",
"build:css:app": "npm-sass ./pages/common/assets/sass/style.scss > ./pages/common/dist/css/app.css",
"build:css:pdf": "sass --no-source-map ./pages/common/assets/sass/pdf:./pages/common/dist/css/pdf",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-pages.git"
},
"author": "Leonard Martin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-pages/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-pages#readme",
"dependencies": {
"@asl/projects": "^15.7.3",
"@asl/service": "^10.3.2",
"@joefitter/docx": "^4.7.0",
"@ukhomeoffice/asl-components": "^13.7.0",
"@ukhomeoffice/asl-constants": "^2.2.0",
"@ukhomeoffice/asl-dictionary": "^2.1.0",
"@ukhomeoffice/frontend-toolkit": "^3.0.0",
"@ukhomeoffice/react-components": "^1.3.3",
"axios": "^1.7.4",
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"csrf": "^3.0.6",
"csv-stringify": "^5.3.6",
"date-fns": "^3.6.0",
"deep-diff": "^1.0.2",
"diff": "^5.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"express": "^4.16.3",
"filenamify": "^4.1.0",
"form-data": "^4.0.0",
"image-size": "^0.7.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-business-time": "^0.7.1",
"multer": "^1.4.5-lts.1",
"mustache": "^2.3.2",
"node-fetch": "^2.6.7",
"qs": "^6.5.2",
"r2": "^2.0.1",
"react": "^16.9.0",
"react-dom": "^16.8.6",
"react-markdown": "^6.0.2",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"semver": "^7.6.0",
"slate": "^0.47.8",
"striptags": "^3.2.0",
"uuid": "^8.3.2",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@jest/globals": "^29.7.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"eslint": "^8.24.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"jest": "^29.7.0",
"mockdate": "^3.0.5",
"npm-sass": "^3.1.0",
"redux-mock-store": "^1.5.4",
"reqres": "^2.1.0",
"sass": "^1.50.1",
"sinon": "^15.0.4"
},
"publishConfig": {
"registry": "https://artifactory.digital.homeoffice.gov.uk/artifactory/api/npm/npm-virtual/"
},
"files": [
"pages/*",
"lib/*",
"constants/*",
"index.js"
]
}