-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.4 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
{
"version": "1.0.9",
"name": "react-immutable-form-with-bootstrap",
"description": "react-immutable-form-with-bootstrap the [i]mmutable form library for react - using hooks",
"types": "./dist/index.d.ts",
"scripts": {
"load": "npm run intern-pre && cd dist && npm run ts && npm run intern-copy && npm run clean-dist && npm publish",
"load-beta": "npm run intern-pre && cd dist && npm run ts && npm run intern-copy && npm run clean-dist && npm publish --tag beta",
"eslint": "eslint --ext .tsx,.ts src --fix",
"intern-pre": "npm run eslint && npm run intern-clean && npm run intern-build",
"knip": "knip --include-libs",
"intern-build-scss": "node-sass --output-style compressed src -o dist",
"intern-copy": " copy package.json dist",
"lint": "npm run knip && npm run ts:check & npm run eslint",
"intern-build": "npm run intern-build-scss",
"intern-clean": "rimraf dist dist",
"intern-test": "vitest",
"clean-dist": "trash \"./**/*.test.*\"",
"check": "node script/check & npm run depcheck & npm run check:npm-check",
"check:npm-check": "npm-check -u -i \"{rc-tooltip,react,react-dom}\" --specials=bin,eslint,babel,webpack",
"depcheck": "depcheck --ignores=@docusaurus/react-loadable,webpack-cli,@hot-loader/react-dom --ignore-patterns=server,node_modules,tmp,fonts",
"check:global": "npm-check -gu",
"ts:check": "tsc --noEmit",
"ts": "tsc --declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristian-sima/iForm.git"
},
"keywords": [],
"author": "SC SIDEWORK SRL",
"license": "MIT",
"bugs": {
"url": "https://github.com/cristian-sima/iForm/issues"
},
"homepage": "https://github.com/cristian-sima/iForm#readme",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript",
"@babel/preset-react"
],
"env": {
"production": {
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-react-constant-elements",
"@babel/plugin-transform-react-inline-elements",
"@babel/plugin-transform-typescript",
"transform-react-remove-prop-types"
]
},
"development": {
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-transform-modules-commonjs"
]
}
}
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.23.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-react-constant-elements": "^7.23.3",
"@babel/plugin-transform-react-inline-elements": "^7.23.3",
"@babel/plugin-transform-typescript": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^22.8.7",
"@types/react-datepicker": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"copy": "^0.3.2",
"css-loader": "^6.8.1",
"depcheck": "^1.4.7",
"eslint": "^8.54.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"node-sass": "^9.0.0",
"npm-check": "^6.0.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"vitest": "^1.4.0",
"rimraf": "^3.0.2",
"knip": "^5.36.2",
"trash-cli": "^6.0.0",
"webpack": "^5.89.0"
},
"overrides": {
"react-datepicker": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"dependencies": {
"date-fns": "^3.6.0",
"history": "^5.3.0",
"immutable": "^4.3.4",
"react": "^17.0.2",
"react-datepicker": "^4.24.0",
"react-dom": "^17.0.2",
"react-immutable-form": "^1.1.7",
"react-redux": "^8.1.3",
"react-router": "^6.22.3",
"x25": "^17.5.6"
}
}