-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
84 lines (84 loc) · 2.61 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
{
"name": "formsy-react-components",
"version": "2.0.0-beta.5",
"description": "Bootstrap components for a formsy-react form.",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:full": "jest --coverage --verbose",
"lint": "eslint src examples --ext .js,.jsx,.ts,.tsx",
"format:configs": "prettier .eslintrc.js jest.config.js tsconfig.json --write",
"build": "tsc && webpack --mode=none && webpack --mode=production",
"prepublishOnly": "./scripts/prepublish.sh",
"dev": "tsc --watch",
"examples": "webpack serve --config webpack.examples.config.js",
"examples:build": "webpack --mode=production --config webpack.examples.config.js",
"gh-pages": "NODE_ENV=production yarn examples:build && gh-pages -d examples",
"generate-docs": "./scripts/generate-docs.sh"
},
"browser": "./dist-umd/main.min.js",
"main": "./dist-umd/main.js",
"types": "./dist-esm/index.d.ts",
"module": "./dist-esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/twisty/formsy-react-components.git"
},
"files": [
"/dist-esm",
"/dist-umd"
],
"keywords": [
"react",
"formsy-react",
"bootstrap",
"react-component"
],
"author": "Tim Brayshaw <tim@brayshaw.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/twisty/formsy-react-components/issues"
},
"peerDependencies": {
"formsy-react": "^2.0.2",
"react": "^16.6.0 || ^17.0.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"devDependencies": {
"@types/enzyme": "^3.9.4",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"enzyme": "^3.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.14.2",
"formsy-react": "^2.0.2",
"gh-pages": "^3.1.0",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"raf": "^3.4.0",
"react": "^17.0.1",
"react-docgen-typescript": "^2.0.0",
"react-docs-markdown": "^0.8.0",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"source-map-loader": "^3.0.0",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.10.3"
}
}