-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.8 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
{
"name": "pragmatic-ui",
"version": "3.0.17",
"description": "A set of themed React components for building beautiful projects",
"main": "dist/pragmatic-ui.js",
"types": "dist/pragmatic-ui.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"dev:client": "react-scripts start",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.{ts,js}\"",
"lint": "npx eslint . --ext .ts,.tsx,.js,.jsx",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psnfrench/pragmatic-ui.git"
},
"keywords": [
"React",
"Components",
"UI",
"Pragmatic"
],
"author": "Paul French",
"license": "ISC",
"bugs": {
"url": "https://github.com/psnfrench/pragmatic-ui/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.32",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router": "^5.1.18",
"@types/react-slick": "^0.23.9",
"babel-jest": "^27.5.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"prettier": "^2.5.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"regenerator-runtime": "^0.13.9",
"svg-url-loader": "^7.1.1",
"ts-jest": "^27.1.4",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
},
"dependencies": {
"formik": "^2.2.9",
"lodash": "^4.17.21",
"react-dropzone": "^14.2.1",
"react-easy-crop": "^4.6.3",
"react-router-dom": "^6.3.0",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1"
},
"peerDependencies": {
"@date-io/date-fns": "^3.0.0",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
"@mui/x-date-pickers": "^7.0.0",
"date-fns": "^3.6.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}