This repository was archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.09 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
{
"name": "webos-streams",
"version": "1.0.0",
"description": "A React application which integrates with the Twitch APIs",
"main": "./dist/index.tsx",
"scripts": {
"start": "node ./node_modules/parcel-bundler/bin/cli serve ./src/index.html --port 80",
"build": "node ./node_modules/parcel-bundler/bin/cli build ./src/index.html --out-dir ./dist/",
"lint": "node ./node_modules/eslint/bin/eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"test:debug": "node --inspect-brk --inspect node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/djroush/webos-streams"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"clients": "^1.1.1",
"jquery": "^3.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"require": "^2.4.20",
"typescript": ">=3.8 <4.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-typescript": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/jquery": "^3.3.38",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-jest": "^26.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-parcel": "^1.10.4",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^26.0.1",
"jest-config": "^26.0.1",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.1.0"
},
"resolutions": {
"lodash": "^4.17.19",
"uglify-js": ">=2.6.0"
}
}