-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.53 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.53 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "mson-react",
"version": "0.0.0-development",
"description": "UI Rendering Layer for React and Material-UI",
"author": "Geoff Cox",
"license": "Apache-2.0",
"main": "lib/bundle.js",
"homepage": "https://redgeoff.github.io/mson-react",
"peerDependencies": {
"react": ">= 16"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/pickers": "^3.2.10",
"classnames": "^2.2.6",
"date-fns": "^2.15.0",
"mson": "^2.12.1",
"react-beautiful-dnd": "^13.0.0",
"react-google-recaptcha": "^2.1.0",
"react-markdown": "^5.0.3",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.1",
"react-text-mask": "^5.4.3",
"text-mask-addons": "^3.8.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^12.1.2",
"babel-loader": "8.1.0",
"commitizen": "^4.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^6.4.0",
"css-mediaquery": "^0.1.2",
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^3.1.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prop-types": "^15.6.2",
"react": "^17.0.1",
"react-beautiful-dnd-test-utils": "^3.2.1",
"react-dom": "^17.0.1",
"react-scripts": "^5.0.0",
"semantic-release": "^18.0.0",
"style-loader": "^3.3.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.9.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write"
]
},
"scripts": {
"lint": "eslint --max-warnings=0 src",
"start": "react-scripts start",
"build": "react-scripts build",
"just-test": "react-scripts test --maxWorkers=2",
"test": "npm run lint && npm run just-test -- --coverage",
"copy-json": "copyfiles -u 1 src/**/*.json lib",
"copy-css": "copyfiles -u 1 src/**/*.css lib",
"compile": "cross-env NODE_ENV=production babel src --ignore '**/*.test.js' -d lib && npm run copy-json && npm run copy-css",
"bundle": "webpack",
"touch": "find src -exec touch {} \\;",
"analyze-bundle": "webpack --profile --json > ./dist/stats.json && webpack-bundle-analyzer ./dist/stats.json",
"predeploy": "yarn build",
"deploy": "echo 'redgeoff.com' > ./build/CNAME && gh-pages -d build",
"prepublishOnly": "cross-env NODE_OPTIONS=--openssl-legacy-provider && yarn compile && yarn bundle",
"semantic-release": "semantic-release",
"prepare": "git config core.hooksPath ./git-hooks"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/demo/**"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"register-service-worker.js",
"index.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/redgeoff/mson-react.git"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"release"
]
}
}