generated from smaugfm/ts-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.59 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
127
{
"name": "slack-presence",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:9333",
"scripts": {
"express": "node -r ts-node/register server/index.ts --project tsconfig.json",
"start": "react-app-rewired start",
"build": "react-app-rewired build && webpack",
"run-built": "node dist/main.js",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"eslint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"prettier": "prettier --write"
},
"dependencies": {
"@date-io/date-fns": "^2.14.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/eslint-plugin": "^11.7.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.88",
"@mui/material": "^5.8.6",
"@mui/x-date-pickers": "^5.0.0-alpha.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/express-ws": "^3.0.1",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.14.182",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/node-schedule": "^2.1.0",
"@types/puppeteer": "^5.4.6",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/validator": "^13.7.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@webpack-cli/generators": "^2.5.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"bufferutil": "^4.0.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"customize-cra": "^1.0.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-only-warn": "^1.0.3",
"express": "^4.18.1",
"express-ws": "^5.0.2",
"husky": "^8.0.1",
"is-ip": "^4.0.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-schedule": "^2.1.0",
"prettier": "^2.7.1",
"pretty-ms": "^7.0.1",
"puppeteer": "^15.1.1",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-use": "^17.4.0",
"react-use-websocket": "^4.2.0",
"simple-node-logger": "^21.8.12",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typed-emitter": "^2.1.0",
"typeface-roboto": "^1.1.13",
"typescript": "^4.7.4",
"use-debounce": "^8.0.1",
"utf-8-validate": "^5.0.9",
"utility-types": "^3.10.0",
"validator": "^13.7.0",
"valuelink": "^2.0.9",
"web-vitals": "^2.1.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": "eslint --fix --max-warnings=0",
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"react-app",
"react-app/jest"
],
"rules": {
"no-console": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
},
"plugins": [
"only-warn"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}