forked from fg-devs/modmail-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.36 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
{
"name": "modmail-web",
"version": "1.5.7",
"description": "Modmail Web interface",
"repository": {
"type": "git",
"url": "https://github.com/fg-devs/modmail-web"
},
"homepage": "https://modmail.pewdiepie.com",
"author": "Floor Gang Devs <https://github.com/fg-devs>",
"license": "GPL-3.0",
"keywords": [
"typescript",
"react",
"modmail",
"newcircuit"
],
"scripts": {
"start": "react-scripts start",
"serve": "npm run build && serve -s ./build -p 80",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src/ --fix",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"profile": "npx cra-bundle-analyzer",
"preinstall": "node ./scripts/preinstall.js",
"postinstall": "node ./scripts/postinstall.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/user-event": "^10.0.0",
"@types/animejs": "^3.1.2",
"@types/jest": "^26.0.20",
"@types/luxon": "^1.25.1",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.7",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@types/showdown": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"cra-bundle-analyzer": "^0.1.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"node-sass": "^4.14.1",
"prettier": "^2.2.1",
"react-scripts": "^4.0.1",
"serve": "^11.3.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@demitchell14/react-showdown": "2.2.1",
"@fg-devs/modmail-types": "npm:@NewCircuit/modmail-types@^1.15.0",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.3",
"animejs": "^3.2.1",
"async-mutex": "^0.3.0",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"history": "^4.10.1",
"i18next": "^19.8.4",
"i18next-http-backend": "^1.0.21",
"jsnlog": "^2.30.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.5",
"react-router-dom": "^5.2.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"unstated-next": "^1.1.0",
"url-pattern": "^1.0.3",
"web-vitals": "^0.2.4",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3"
}
}