-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 2.42 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
{
"name": "eq-questionnaire-runner",
"version": "1.0.0",
"description": "ONS Digital eQ Questionnaire Runner App",
"author": {
"name": "ONS Digital",
"url": "http://onsdigital.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/ONSdigital/eq-questionnaire-runner"
},
"scripts": {
"start": "make dev-compose-up && concurrently \"make run\" \"livereload . -e 'html,njk'\"",
"lint": "npm run generate_pages && npm run lint:tests && npm run lint:test-schemas",
"lint:tests": "prettier --check \"tests/functional/**/*.js\" && eslint \"tests/functional/**/*.js\"",
"lint:test-schemas": "prettier --check \"schemas/test/*/*.json\" && eslint \"schemas/test/**/*.json\"",
"test_functional": "./node_modules/.bin/wdio tests/functional/wdio.conf.js",
"generate_pages": "rm -rf ./tests/functional/generated_pages && poetry run python -m tests.functional.generate_pages schemas/test/en/ ./tests/functional/generated_pages -r '../../base_pages'",
"format": "npm run format:tests && npm run format:test-schemas",
"format:tests": "prettier \"tests/functional/**/*.js\" --write && eslint --fix \"tests/functional/**/*.js\"",
"format:test-schemas": "prettier \"schemas/test/*/*.json\" --write && eslint --fix \"schemas/test/*/*.json\"",
"wdio": "wdio run ./tests/functional/wdio.conf.js"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/register": "^7.25.7",
"@babel/runtime": "^7.25.7",
"@wdio/cli": "^9.2.1",
"@wdio/local-runner": "^8.14.3",
"@wdio/mocha-framework": "^9.1.3",
"@wdio/spec-reporter": "^9.1.3",
"eslint": "^v8.57.1",
"eslint-cli": "^1.1.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"json-web-key": "^0.4.0",
"jsrsasign": "^11.0.0",
"lint-staged": "^15.2.10",
"livereload": "^0.9.3",
"node-forge": "^1.3.1",
"node-jose": "^2.2.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"uuid": "^11.0.2",
"webdriverio": "^9.2.1"
},
"prettier": {}
}