-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
{
"name": "notifications-admin",
"version": "0.0.1",
"description": "Admin front end for GOV.UK Notify",
"engines": {
"node": ">=10.15.3"
},
"scripts": {
"test": "npm run lint:scss && npm run lint:js && npm run test:js tests/javascripts",
"test:js": "node --experimental-vm-modules node_modules/.bin/jest",
"test-watch": "jest --watch tests/javascripts",
"debug": "node --inspect-brk --experimental-vm-modules node_modules/.bin/jest --runInBand $npm_config_test",
"build": "npm run clean && rollup -c",
"watch": "rollup -c -w",
"audit": "better-npm-audit audit --production --level high",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:js": "eslint",
"clean": "del-cli app/static/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphagov/notifications-admin.git"
},
"author": "Government Digital Service",
"license": "MIT",
"homepage": "https://github.com/alphagov/notifications-admin#readme",
"dependencies": {
"cbor-js": "0.1.0",
"govuk-frontend": "6.1.0",
"jquery": "3.5.0",
"morphdom": "2.6.1",
"textarea-caret": "3.1.0",
"timeago": "1.6.5"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "1.0.0",
"better-npm-audit": "3.11.0",
"del-cli": "6.0.0",
"eslint": "10.2.0",
"eslint-plugin-jest": "29.15.2",
"globals": "17.5.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"postcss-replace": "2.0.1",
"rollup": "4.60.1",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-styler": "2.0.0",
"sass": "1.89.2",
"stylelint": "16.21.0",
"stylelint-config-gds": "2.0.0",
"stylelint-config-standard-scss": "15.0.1"
},
"overrides": {
"minimist": "1.2.6",
"lodash.template": "4.5.0"
},
"jest": {
"setupFiles": [
"<rootDir>/tests/javascripts/support/setup.js"
],
"testEnvironmentOptions": {
"url": "https://www.notifications.service.gov.uk"
},
"transform": {},
"testMatch": [
"<rootDir>/**/?(*.)(test).{js,mjs}"
],
"testEnvironment": "jsdom"
}
}