forked from LBHackney-IT/mat-process-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.62 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@hackney/mat-process-utils",
"version": "0.1.0",
"description": "Reusable steps and tools for Manage a Tenancy processes",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"repository": "LBHackney-IT/mat-process-utils",
"scripts": {
"build": "npm run build:barrels && rollup --config",
"build:watch": "npm run build -- --watch",
"build:barrels": "barrelsby --config ./barrelsby.json",
"build:docs": "typedoc",
"test": "npm run format:check && npm run lint && npm run lint:codeowners && npm run test:all",
"test:update": "npm run format && npm run lint:fix && npm run lint:codeowners && npm run test:all:update",
"test:all": "npm run build && npm run test:unit && npm run test:examples:nobuild",
"test:all:update": "npm run build && npm run test:unit:update && npm run test:examples:nobuild:update",
"test:unit": "jest",
"test:unit:update": "npm run test:unit -- --updateSnapshot",
"test:examples:nobuild": "bin/test-examples",
"test:examples:nobuild:update": "npm run test:examples:nobuild -- --updateSnapshot",
"test:examples": "npm run build && npm run test:examples:nobuild",
"test:examples:update": "npm run build && npm run test:examples:nobuild:update",
"lint": "eslint --report-unused-disable-directives --config ./.eslintrc.full.js '**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:codeowners": "codeowners-enforcer -i 'package.json' -i 'package-lock.json'",
"format": "prettier --write '**/*'",
"format:check": "prettier --check '**/*'",
"prepack": "npm run build",
"preversion": "npm install && npm test && bin/check-git"
},
"peerDependencies": {
"next": ">= 9 < 10",
"react": ">= 16 < 17",
"styled-jsx": ">= 3 < 4"
},
"dependencies": {
"classnames": "^2.2.6",
"date-fns": "^2.14.0",
"is-online": "^8.3.1",
"lbh-frontend-react": "0.0.14",
"null-as-undefined": "^0.2.1",
"querystring": "^0.2.0",
"react-async-hook": "^3.6.1",
"react-signature-canvas": "^1.0.3",
"remultiform": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"@types/lodash.isequal": "^4.5.5",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-signature-canvas": "^1.0.1",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"barrelsby": "^2.2.0",
"codeowners-enforcer": "^1.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"jest": "^25.5.4",
"next": "^9.4.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rollup": "^2.10.8",
"rollup-plugin-delete": "^1.2.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-typescript2": "^0.27.1",
"styled-jsx": "^3.3.0",
"ts-jest": "^25.5.1",
"tslib": "^1.13.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.3"
},
"husky": {
"pre-commit": "pretty-quick --staged"
}
}