-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@habx/lib-form-helper",
"version": "8.3.0",
"description": "Wrappers for react-final-form",
"sideEffects": false,
"main": "./dist/index.cjs.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts",
"scripts": {
"build:cjs": "bili",
"build:documentation": "typedoc ./src/index.ts",
"build:esm": "tsc",
"build:watch": "npm run clean && tsc --watch",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build-ci": "npm run clean && npm run build:esm && npm run build:cjs",
"publish:tsdoc": "npm run build:documentation && gh-pages --dist docs --repo https://${GITHUB_TOKEN}@github.com/${CIRCLE_REPOSITORY_URL#\"git@github.com:\"} --silent --message \"[SKIP CI] CircleCI build ${CIRCLE_BUILD_NUM} pushed to Github Pages\"",
"clean": "rimraf ./dist",
"lint": "eslint \"src/**\"",
"test": "node --icu-data-dir node_modules/full-icu node_modules/.bin/jest --config ./jest.config.js",
"test-ci": "node --icu-data-dir node_modules/full-icu node_modules/.bin/jest --config ./jest.config.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/habx/lib-form-helper.git"
},
"author": "HABX Front End team",
"license": "ISC",
"bugs": {
"url": "https://github.com/habx/lib-form-helper/issues"
},
"homepage": "https://github.com/habx/lib-form-helper#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"peerDependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"styled-components": "^5.3.6"
},
"dependencies": {
"@habx/lib-client-intl": "^3.0.0",
"@habx/ui-core": "^6.21.0",
"brace": "^0.11.1",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"react-ace": "^10.1.0",
"react-final-form": "^6.5.9"
},
"devDependencies": {
"@habx/config-ci-front": "^3.9.0",
"@habx/eslint-config-client": "^6.10.0",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.26",
"@types/react-router": "^5.1.20",
"@types/styled-components": "^5.1.26",
"bili": "^5.0.5",
"eslint": "^8.31.0",
"full-icu": "^1.5.0",
"husky": "^4.3.8",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}