-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.76 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
{
"name": "@nice-digital/next-web-monorepo",
"private": true,
"version": "1.0.0",
"description": "Monorepo for Next Web",
"scripts": {
"// TESTS": "",
"test": "jest --notify --detectOpenHandles",
"test:web": "jest --silent --notify --detectOpenHandles --selectProjects web",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:web:fast": "jest --maxWorkers=75% --onlyChanged --silent --no-cache --detectOpenHandles --selectProjects web",
"// LINTING/CODE STYLE": "",
"lint": "npm run prettier && npm run lint:ts && npm run lint:scss && npm run ts:check",
"lint:fix": "npm run prettier:fix && npm run lint:ts:fix && npm run lint:scss:fix",
"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 web -p web-host -p functional-tests --noEmit",
"ts:build": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nice-digital/next-web.git"
},
"license": "MIT",
"author": "NICE Digital (https://www.nice.org.uk/digital)",
"contributors": [
"NICE Digital Services (https://www.nice.org.uk/digital)",
"Ian Routledge (https://ediblecode.com)"
],
"homepage": "https://github.com/nice-digital/next-web#readme",
"devDependencies": {
"@next/eslint-plugin-next": "^12.2.2",
"@nice-digital/browserslist-config": "^2.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/config": "0.0.41",
"@types/jest": "^28.1.6",
"@types/node": "^14.18.22",
"@types/pino": "^7.0.5",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-extended": "^3.0.1",
"jest-teamcity-reporter": "^0.9.0",
"node-notifier": "^10.0.1",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^26.0.0",
"ts-jest": "^28.0.7",
"type-fest": "^2.17.0",
"typescript": "^4.7.4"
},
"volta": {
"node": "18.16.0"
}
}