-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.73 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": "asl-internal-ui",
"version": "3.4.21",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "npm-run-all --parallel watch:client watch:server watch:css",
"watch:client": "npm run build:js -- --watch",
"watch:server": "nodemon -r dotenv/config -e js,jsx,json -w",
"watch:css": "npm run build:css -- --watch",
"test": "npm run test:lint && npm run test:deduped",
"test:lint": "eslint . --ext jsx,js",
"test:deduped": "./tests/dedupe.sh",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"build": "npm run build:js && npm run build:css",
"build:js": "node --max_old_space_size=4096 node_modules/.bin/webpack",
"prebuild:css": "mkdir -p ./public/css",
"build:css": "npm-sass ./assets/sass/app.scss > ./public/css/app.css",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-internal-ui.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-internal-ui/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-internal-ui#readme",
"dependencies": {
"@asl/pages": "^31.6.20",
"@asl/projects": "^15.6.14",
"@asl/service": "^10.5.3",
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@ukhomeoffice/asl-components": "^13.6.2",
"@ukhomeoffice/asl-constants": "^2.1.7",
"@ukhomeoffice/react-components": "^1.0.0",
"accessible-autocomplete": "^2.0.3",
"aws-sdk": "^2.1354.0",
"babel-loader": "^9.1.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"backpack-transpiled": "0.0.23",
"body-parser": "^1.20.1",
"classnames": "^2.3.1",
"css-loader": "^5.0.0",
"csv-stringify": "^5.3.6",
"date-fns": "^3.6.0",
"docx": "5.0.0-rc4",
"express": "^4.18.2",
"filenamify": "^4.1.0",
"lodash": "^4.17.19",
"moment": "^2.29.3",
"mustache": "^2.3.2",
"ndjson": "^1.5.0",
"r2": "^2.0.1",
"react": "^16.9.0",
"react-markdown": "^6.0.2",
"react-redux": "^7.2.2",
"sass": "^1.50.1",
"style-loader": "^2.0.0",
"through2": "^3.0.1",
"uuid": "^8.3.2",
"uuid-validate": "0.0.3"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"babel-plugin-transform-require-ignore": "^0.1.1",
"dotenv": "^5.0.1",
"eslint": "^8.25.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"npm-sass": "^3.1.0",
"webpack": "^5.82.1",
"webpack-cli": "^4.9.2"
},
"overrides": {
"node-fetch": "^2.6.11",
"d3-color": "^3.1.0"
}
}