-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.81 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.81 KB
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
128
129
{
"version": "0.3.6",
"license": "MIT",
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"keywords": [
"websocket",
"uwebsocket",
"realtime",
"callbacks"
],
"scripts": {
"clean": "rimraf lib dist es coverage types",
"dev:web": "webpack serve --config webpack.config.example.web.js",
"dev:node": "DEBUG=example*,teckos* nodemon --watch './src/**/*.ts,./example/node/**/*.ts' --exec 'ts-node' --project tsconfig.example.node.json example/src/node/index.ts",
"example:web": "webpack --config webpack.config.example.web.js && echo 'Please open example/dist/web/index.html in your browser'",
"example:node": "tsc --p tsconfig.example.node.json && node example/dist/node/index.js",
"check-types": "tsc --noEmit",
"build": "rollup -c",
"lint": "eslint --ext js,ts src",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn lint --fix"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"name": "teckos-client",
"author": "Tobias Hegemann <tobias.hegemann@googlemail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/delude88/teckos-client.git"
},
"homepage": "https://github.com/delude88/teckos-client#readme",
"bugs": {
"url": "https://github.com/delude88/teckos-client/issues"
},
"size-limit": [
{
"path": "dist/teckos-client.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/teckos-client.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.5",
"@babel/plugin-external-helpers": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-flow": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@babel/register": "^7.17.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.1",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"ioredis": "^5.0.6",
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"size-limit": "^7.0.8",
"teckos": "^0.9.6",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2",
"ws": "^8.8.0"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"isomorphic-ws": "^4.0.1"
},
"sideEffects": false
}