-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 2.46 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
{
"name": "react-rulebuilder",
"version": "0.2.1",
"description": "Rule Builder for React",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage",
"storybook": "start-storybook",
"prerelease": "npm run build",
"release": "release-it"
},
"keywords": [],
"author": {
"name": "Hardys",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.8",
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@storybook/addon-a11y": "6.3.12",
"@storybook/addon-docs": "6.3.12",
"@storybook/addon-viewport": "6.3.12",
"@storybook/react": "6.3.12",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
"@types/react": "17.0.33",
"@types/react-dom": "17.0.10",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.2.3",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"prettier-standard": "16.4.1",
"react": "17.0.2",
"react-docgen-typescript-loader": "3.7.2",
"react-dom": "17.0.2",
"release-it": "14.11.6",
"rollup": "2.58.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-typescript2": "0.30.0",
"standard": "16.0.4",
"standard-prettier": "1.0.1",
"ts-jest": "27.0.7",
"ts-loader": "9.2.6",
"typescript": "4.1.5"
},
"dependencies": {
"react-querybuilder": "3.9.0"
},
"peerDependencies": {
"react": "^16 || ^17.0.0",
"react-dom": "^16 || ^17.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/",
"dist/"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
},
"lint-staged": {
"*": [
"prettier-standard --format"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}