-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.65 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
{
"name": "@nice-digital/bnf-gatsby-monorepo",
"version": "0.0.1",
"description": "Monorepo for BNF/BNFC",
"scripts": {
"// TESTS": "",
"test": "jest --silent --notify --detectOpenHandles",
"test:verbose": "cross-env DEBUG_PRINT_LIMIT=20000 jest --silent=false --notify --detectOpenHandles",
"test:gatsby": "jest --silent --notify --detectOpenHandles --selectProjects gatsby",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"// AUDIT": "",
"audit:teamcity": "npm audit --audit-level=moderate --json|npm-audit-reporter-teamcity",
"// LINTING/CODE STYLE": "",
"lint": "npm run prettier && npm run lint:ts && npm run lint:scss && npm run ts:check",
"prettier": "prettier --check \"./**/*.{ts,tsx,js}\"",
"prettier:fix": "npm run prettier -- --write",
"lint:ts": "eslint .",
"lint:ts:fix": "npm run lint:ts -- --fix",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:scss:fix": "npm run lint:scss -- --fix",
"// TYPECHECKING": "",
"ts:check": "tsc -p gatsby -p functional-tests --noEmit",
"ts:build": "tsc -b"
},
"author": "NICE Digital (https://www.nice.org.uk/digital)",
"contributors": [
"NICE Digital Services (https://www.nice.org.uk/digital)",
"Ian Routledge (http://ediblecode.com)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nice-digital/bnf-gatsby.git"
},
"license": "MIT",
"homepage": "https://github.com/nice-digital/bnf-gatsby#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^1.2.0",
"jest-teamcity-reporter": "^0.9.0",
"node-notifier": "^10.0.0",
"npm-audit-reporter-teamcity": "^0.3.1",
"prettier": "^3.2.5",
"stylelint": "^14.2.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^24.0.0",
"ts-jest": "^29.1.0",
"typescript": "^4.5.4",
"xml-js": "^1.6.11"
},
"volta": {
"node": "18.18.2"
},
"dependencies": {
"jest-fetch-mock": "^3.0.3"
}
}