-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.17 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
{
"name": "irodr",
"version": "1.0.0",
"private": true,
"description": "inoreader RSS reader client on browser",
"homepage": "https://irodr.netlify.com",
"repository": {
"type": "git",
"url": "https://github.com/azu/irodr"
},
"license": "MIT",
"author": "azu",
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"netlify": "dotenv -e .env.netlify react-scripts build",
"dev": "netlify dev",
"start": "PORT=13245 react-scripts start",
"test": "react-scripts test && npm run test:proxy",
"test:proxy": "node tools/no-console-proxy.mjs",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"husky": {
"hooks": {
"post-commit": "git reset",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"dependencies": {
"@azu/client-oauth2": "^5.0.1",
"@immutable-array/prototype": "^1.0.6",
"@types/classnames": "^2.3.4",
"@types/combokeys": "^2.4.9",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.groupby": "^4.6.9",
"@types/lodash.keyby": "^4.6.9",
"@types/lodash.maxby": "^4.6.9",
"@types/lodash.sortby": "^4.7.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^18.19.63",
"@types/prop-types": "^15.7.13",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@uifabric/icons": "^7.9.5",
"almin": "^0.19.0",
"almin-logger": "^6.2.4",
"almin-react-container": "^0.7.4",
"classnames": "^2.5.1",
"combokeys": "^3.0.1",
"date-fns": "^1.30.1",
"ddd-base": "^0.9.1",
"debug": "^4.3.7",
"he": "^1.2.0",
"localforage": "^1.10.0",
"localforage-memoryStorageDriver": "^0.9.2",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0",
"lodash.keyby": "^4.6.0",
"lodash.maxby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"map-like": "^2.0.0",
"most-visible": "^1.5.0",
"office-ui-fabric-react": "^7.204.0",
"popsicle": "^9.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"react-render-html": "^0.6.0",
"requestidlecallback": "^0.3.0",
"sanitize-html": "^2.13.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.2",
"@types/http-proxy-middleware": "^0.19.3",
"assert": "npm:assert@^2.1.0",
"dotenv-cli": "^3.2.0",
"http-proxy-middleware": "^0.21.0",
"lint-staged": "^13.3.0",
"netlify-cli": "^15.11.0",
"prettier": "^2.8.7",
"querystring": "npm:querystring-es3@^0.2.1",
"react-scripts": "^5.0.1",
"typescript": "^5.0.2"
},
"browserslist": {
"production": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
}
}