-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "stream-source",
"version": "1.0.0",
"description": "Stream overlay",
"main": "index.js",
"scripts": {
"build": "esbuild src/index.tsx --bundle --minify --sourcemap --outfile=docs/bundle.js",
"start": "node serve.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LMulvey/stream-source.git"
},
"keywords": [],
"author": "@lmulvey",
"license": "ISC",
"bugs": {
"url": "https://github.com/LMulvey/stream-source/issues"
},
"homepage": "https://github.com/LMulvey/stream-source#readme",
"devDependencies": {
"@types/dayjs-precise-range": "^1.0.1",
"@types/node": "^16.11.7",
"@types/react": "17.0.30",
"@types/react-dom": "17.0.9",
"@types/styled-components": "^5.1.15",
"chokidar": "^3.5.2",
"esbuild": "^0.13.7",
"eslint": "^7.32.0",
"eslint-config-canonical": "^26.2.3",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"live-server": "^1.2.1",
"prettier": "^2.4.1",
"typescript": "4.4.4"
},
"dependencies": {
"@supabase/supabase-js": "1.28.0",
"dayjs": "1.10.7",
"dayjs-precise-range": "1.0.1",
"extra-life-api": "6.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "5.3.1"
}
}