-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 3.87 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
{
"name": "doc-it",
"version": "0.1.0",
"private": true,
"dependencies": {
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/colors-branding": "^3.2.0",
"@brightlayer-ui/icons-mui": "^3.6.0",
"@brightlayer-ui/react-components": "^6.3.0",
"@brightlayer-ui/react-progress-icons": "^2.1.1",
"@brightlayer-ui/react-themes": "^7.1.0",
"@emotion/css": "^11.13.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto-mono": "^5.1.0",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.6.0",
"@mui/styles": "^5.6.0",
"@types/dompurify": "^3.0.2",
"axios": "^1.7.4",
"color": "^4.2.3",
"dompurify": "^3.1.3",
"fireworks-canvas": "^2.6.2",
"flexsearch": "~0.6.0",
"lodash.debounce": "^4.0.8",
"placeholder-loading": "^0.6.0",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-ga": "^3.0.0",
"react-redux": "^7.2.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"redux": "^4.0.5",
"web-vitals": "^3.5.1"
},
"scripts": {
"start": "craco start",
"build": "yarn indexer && craco build",
"test": "craco test --passWithNoTests",
"eject": "craco eject",
"check:links": "bash ./__scripts__/link-check/checklinks.sh",
"check:links-ci": "bash ./__scripts__/link-check/checklinksCI.sh",
"ga:prod": "cp -r ./googleAnalytics/ga.prod.js ./src/ga.js",
"ga:dev": "cp -r ./googleAnalytics/ga.dev.js ./src/ga.js",
"lint": "eslint \"src/**/**.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/**.{ts,tsx}\" --fix",
"prettier": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html,md}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html,md}\" --check",
"precommit": "yarn prettier && yarn lint && yarn check:links",
"indexer": "cd __scripts__/crawl && node crawler.js && node indexer.js && cd ../.. && prettier \"src/database/*.json\" --write",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@craco/craco": "^7.1.0",
"@mdx-js/loader": "^2.1.5",
"@mdx-js/mdx": "^2.2.1",
"@mdx-js/react": "^3.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/color": "^4.2.0",
"@types/jest": "^27.5.2",
"@types/lodash.debounce": "^4.0.9",
"@types/mdx": "^2.0.3",
"@types/node": "^17.0.45",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.0.9",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.33.2",
"firebase-tools": "^13.28.0",
"markdown-link-check": "^3.13.6",
"natural": "^5.0.0",
"prettier": "^2.8.0",
"remark-gfm": "^1.0.0",
"sass": "^1.70.0",
"typescript": "^5.1.6"
},
"prettier": "@brightlayer-ui/prettier-config"
}