forked from hardyscc/react-rulebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.45 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
{
"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 src\\**",
"storybook": "start-storybook",
"prerelease": "npm run build",
"release": "release-it"
},
"keywords": [],
"author": {
"name": "Hardys",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.12.9",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@storybook/addon-a11y": "6.1.10",
"@storybook/addon-docs": "6.1.10",
"@storybook/addon-viewport": "6.1.10",
"@storybook/react": "6.1.10",
"@testing-library/jest-dom": "5.11.6",
"@testing-library/react": "11.2.2",
"@types/jest": "26.0.16",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"awesome-typescript-loader": "5.2.1",
"babel-loader": "8.2.2",
"husky": "4.3.4",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"prettier-standard": "16.4.1",
"react": "17.0.1",
"react-docgen-typescript-loader": "3.7.2",
"react-dom": "17.0.1",
"release-it": "14.2.2",
"rollup": "2.34.2",
"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.29.0",
"standard": "16.0.3",
"standard-prettier": "1.0.1",
"ts-jest": "26.4.4",
"ts-loader": "8.0.11",
"typescript": "4.1.2"
},
"dependencies": {
"react-querybuilder": "3.8.4"
},
"peerDependencies": {
"react": "^16 || ^17.0.0",
"react-dom": "^16 || ^17.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
],
"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"
}
}
}