-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
61 lines (61 loc) · 1.92 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
{
"name": "data-workspace-frontend",
"version": "1.0.0",
"description": "Builds the CSS for data-workspace",
"directories": {
"doc": "docs",
"test": "test"
},
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "sass dataworkspace/dataworkspace/sass:dataworkspace/dataworkspace/static/css --no-source-map --load-path node_modules --style=compressed --quiet",
"debug:css": "sass dataworkspace/dataworkspace/sass:dataworkspace/dataworkspace/static/css --embed-source-map --load-path node_modules",
"preinstall": "npx npm-force-resolutions",
"cypress:run": "cypress run",
"cypress:run:a11y": "cypress run --config-file cypress.a11y.config.ts",
"cypress:open": "cypress open",
"cypress:open:a11y": "cypress open --config-file cypress.a11y.config.ts",
"lint": "eslint dataworkspace/dataworkspace/static/js/react/**/*",
"prepare": "husky"
},
"lint-staged": {
"dataworkspace/dataworkspace/static/**/*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"resolutions": {
"scss-tokenizer": "0.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uktrade/data-workspace.git"
},
"keywords": [],
"author": "Department for International Trade",
"license": "MIT",
"bugs": {
"url": "https://github.com/uktrade/data-workspace/issues"
},
"engines": {
"node": "18"
},
"homepage": "https://github.com/uktrade/data-workspace#readme",
"devDependencies": {
"@testing-library/cypress": "^10.0.1",
"axe-core": "^4.8.3",
"cypress": "13.6.3",
"cypress-axe": "^1.5.0",
"cypress-e2e-testing": "file:cypress",
"cypress-multi-reporters": "^1.6.4",
"eslint": "^8.57.0",
"govuk-frontend": "5.4.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"js-base64": "^3.7.5",
"mocha-junit-reporter": "^2.2.1",
"sass": "^1.77.8",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}