-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"name": "@codegateinc/react-form-builder-v2",
"author": "@codegate",
"license": "MIT",
"typings": "index.d.ts",
"version": "1.3.5",
"main": "dist/index.js",
"scripts": {
"tsc": "node node_modules/typescript/bin/tsc",
"test": "jest",
"precommit": "concurrently 'tsc' 'yarn build' && git add dist package.json",
"build": "tsdx build --format cjs,esm,umd",
"generate-types": "tsc --declaration"
},
"dependencies": {
"ramda": "0.28.0"
},
"peerDependencies": {
"react": "18.x.x"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.20.5",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/preset-typescript": "7.18.6",
"@types/react": "18.0.26",
"babel-plugin-module-resolver": "4.1.0",
"concurrently": "7.6.0",
"husky": "8.0.2",
"react": "18.2.0",
"tsdx": "0.14.1",
"typescript": "4.9.4",
"@types/ramda": "0.28.20",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/jest-dom": "6.1.3",
"@babel/preset-env": "7.22.15",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0"
},
"babel": {
"ignore": [
"src/types.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/codegateinc/react-form-builder-v2.git"
}
}