-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.78 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": "@maeek/neutrino-chat",
"version": "0.1.0",
"private": true,
"scripts": {
"start:noopen": "NOOPEN=true npm run start",
"design-local": "cd ../neutrino-design; npm run build; cd ./dist; npm i",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"eslint": "eslint",
"lint": "npm run eslint -- ./src",
"lint:fix": "npm run eslint -- --fix ./src",
"test": "node scripts/test.js",
"test:watch": "node scripts/test.js --watch",
"test:coverage": "node scripts/test.js --coverage",
"analyze": "node scripts/analyze.js"
},
"babel": {
"presets": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:8080/api/",
"dependencies": {
"@maeek/neutrino-design": "^1.2.18",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@simplewebauthn/browser": "^7.2.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.0.3",
"@types/localforage": "0.0.34",
"@types/lodash.random": "^3.2.6",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^16.11.9",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.20",
"@types/react-responsive": "^8.0.4",
"@types/react-router-dom": "^5.3.2",
"@types/react-virtualized": "^9.21.21",
"@types/redux-devtools-extension": "^2.13.2",
"@types/redux-persist": "^4.3.1",
"@types/redux-thunk": "^2.1.32",
"@types/socket.io-client": "^3.0.0",
"axios": "^0.24.0",
"classnames": "^2.3.1",
"comlink": "^4.3.1",
"dayjs": "^1.10.7",
"focus-visible": "^5.2.0",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.random": "^3.2.0",
"lodash.throttle": "^4.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-refresh": "^0.11.0",
"react-responsive": "^8.2.0",
"react-router-dom": "^5.3.0",
"react-virtualized": "^9.22.5",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.0",
"reselect": "^4.0.0",
"socket.io-client": "^4.4.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/classnames": "^2.3.1",
"@types/lodash.debounce": "^4.0.6",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-react": "^3.0.1",
"camelcase": "^6.2.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.11.0",
"fs-extra": "^10.0.0",
"glob-all": "^3.2.1",
"identity-obj-proxy": "3.0.0",
"jest": "27.3.1",
"jest-circus": "27.3.1",
"jest-resolve": "27.3.1",
"jest-watch-typeahead": "1.0.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "^15.1.0",
"postcss-loader": "4.2.0",
"postcss-normalize": "10.0.1",
"postcss-preset-env": "7.0.1",
"postcss-safe-parser": "6.0.0",
"prettier": "^2.4.1",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"sass": "^1.43.4",
"semver": "7.3.5",
"ts-pnp": "1.2.0",
"vite": "^4.0.4",
"vite-plugin-pwa": "^0.14.1",
"vite-plugin-svgr": "^2.4.0",
"vite-require": "^0.2.3",
"vite-tsconfig-paths": "^4.0.5",
"why-did-you-update": "^1.0.8"
}
}