-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
134 lines (134 loc) · 3.97 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "form-configurable",
"version": "3.3.4-development",
"license": "MIT",
"private": false,
"author": "Adi Fatkhurozi <[email protected]>",
"description": "Performant, flexible and extensible forms library for React Form Configurable",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adifkz/exp-p": "^1.0.25",
"@babel/runtime": "^7.21.0",
"eslint-plugin-jest": "^27.2.1",
"expressionparser": "^1.1.5",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-scripts": "^5.0.1",
"typescript": "^5.0.2"
},
"scripts": {
"serve": "npx serve -s app/build",
"test": "react-scripts test",
"commit": "git-cz",
"build-formula": "babel ./src/gateway/formula_override.ts --out-dir ./public/js/ --extensions '.ts,.js' --source-maps inline",
"publish": "npm run build && cd ./dist && npm publish --access public",
"build-homepage": "npm run build && cd ./app && npm install && npm run build && cd .. && npm run docs",
"start": "cd ./app && npm run start",
"build": "rimraf dist/* && rimraf types/* && npm run build:stable && npm run build:typescript && npm run build:copy-files",
"build:local": "rimraf dist/* && rimraf types/* && npm run build:stable && npm run build:typescript && npm run build:copy-files && cd ./dist && npm pack",
"build:stable": "node scripts/build.js stable",
"build:typescript": "npx tsc --emitDeclarationOnly",
"build:copy-files": "node scripts/copy-files.js",
"semantic-release": "semantic-release --branches master",
"docs": "typedoc src --out docs",
"lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/preset-typescript": "^7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/core-js": "^2.5.5",
"@types/jest": "^29.5.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^18.15.7",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-import-aliases": "^1.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"semantic-release": "^20.1.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typedoc": "^0.23.28",
"webpack": "^5.76.3"
},
"release": {
"branches": [
"master",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
"@semantic-release/github"
],
"ci": true
},
"repository": {
"type": "git",
"url": "https://github.com/adyfk/form-configurable.git"
},
"keywords": [
"react",
"hooks",
"form",
"forms",
"form-validation",
"validation",
"typescript",
"react-hooks",
"react-form",
"form-dynamic",
"form-configurable",
"expression-form"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/adyfk/form-configurable/issues"
}
}