-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
126 lines (126 loc) · 3.98 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "json-formatter",
"version": "1.0.0",
"description": "A JSON Formatter",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production --env=prod",
"start": "webpack-dev-server --mode=development --env=dev",
"test": "cross-env NODE_ENV=test jest",
"analyze-bundle": "cross-env ANALYZE=true npm run build",
"format": "prettier --write src/**/*.{js,jsx,css,html,json}",
"test:coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Boy With Silver Wings <agney@outlook.in>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.2.1",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^6.0.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.7",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.1.3",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"lodash-webpack-plugin": "^0.11.5",
"mini-css-extract-plugin": "^0.9.0",
"moment-locales-webpack-plugin": "^1.2.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"purify-css": "^1.2.6",
"purifycss-webpack": "^0.7.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.2.1",
"stylelint": "^13.6.0",
"stylelint-config-standard": "^20.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-monitor": "^1.0.14",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"buffetjs": "^1.0.6",
"core-js": "^3.6.5",
"eslint": "^7.2.0",
"file-saver": "^2.0.2",
"formik": "^2.1.4",
"lodash": "^4.17.15",
"monaco-editor": "^0.20.0",
"peerjs": "^1.2.0",
"prop-types": "^15.7.2",
"random-words": "^1.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-spring": "^8.0.27",
"react-tiny-fab": "^3.5.0",
"react-use-web-share": "^1.0.2",
"styled-components": "^5.1.1",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/vendor/**",
"!**/scripts/**"
],
"transformIgnorePatterns": [
"node_modules/(?!(monaco-editor)/)"
]
},
"repository": {
"type": "git",
"url": "https://github.com/agneym/json-formatter"
}
}