-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.03 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
{
"private": true,
"name": "wordcloud-generator",
"version": "1.0.1",
"description": "A modern wordcloud generator based on the original wordcloud generator by Jason Davies",
"keywords": [
"wordcloud",
"generator",
"visualization",
"d3",
"nlp",
"create-react-app",
"unified-doc"
],
"author": "Chris Zhou <[email protected]>",
"license": "MIT",
"repository": "https://github.com/chrisrzhou/wordcloud-generator.git",
"bugs": "https://github.com/chrisrzhou/wordcloud-generator/issues",
"homepage": "https://wordcloud-generator.netlify.com/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "xo --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@mdx-js/react": "^1.5.9",
"lancaster-stemmer": "^1.0.5",
"react": "^16.13.1",
"react-color": "^2.18.0",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"react-wordcloud": "^1.2.3",
"rehype-highlight": "^4.0.0",
"rehype-react": "^6.1.0",
"save-svg-as-png": "^1.4.17",
"stemmer": "^1.0.5",
"theme-ui": "^0.3.1",
"unified-doc": "^3.3.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"eslint-config-xo-react": "^0.23.0",
"husky": "^4.2.5",
"xo": "^0.33.1"
},
"husky": {
"hooks": {
"pre-push": "npm run lint; npm run build"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": true,
"trailingComma": "all"
},
"xo": {
"prettier": true,
"env": [
"browser"
],
"extends": [
"xo-react"
],
"rules": {
"new-cap": "off",
"react/function-component-definition": "off",
"react/prop-types": "off",
"import/extensions": "off",
"import/no-anonymous-default-export": "off",
"import/no-unassigned-import": "off"
}
}
}