forked from veuelive/veue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "veue",
"private": true,
"dependencies": {
"@activeadmin/activeadmin": "^2.7.0",
"@appsignal/javascript": "^1.3.12",
"@appsignal/plugin-breadcrumbs-console": "^1.1.12",
"@appsignal/stimulus": "^1.0.6",
"@github/time-elements": "^3.1.1",
"@logdna/browser": "^1.1.2",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "^4.3.0",
"@types/actioncable": "^5.2.3",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/intl-tel-input": "^14.0.1",
"@types/jest": "^26.0.13",
"@types/jquery": "^3.5.5",
"@types/resize-observer-browser": "^0.1.5",
"@types/w3c-image-capture": "^1.0.2",
"activeadmin_addons": "^1.0.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"commander": "^7.2.0",
"croppie": "^2.6.5",
"hls.js": "^0.14.4",
"intl-tel-input": "^17.0.3",
"jest-fetch-mock": "^3.0.3",
"mobile-drag-drop": "^2.3.0-rc.2",
"mux-embed": "^3.4.1",
"node-fetch": "2.6.1",
"phenix-edge-auth": "hcatlin/EdgeAuth.git#master",
"phenix-web-sdk": "^2021.0.9",
"preact": "^10.5.13",
"sass": "^1.26.10",
"simplebar": "^5.3.0",
"stimulus": "^1.1.1",
"ts-loader": "^8.0.2",
"typescript": "^4.2.3"
},
"version": "0.1.0",
"devDependencies": {
"@babel/eslint-parser": "^7.13.14",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-jest": "^26.5.2",
"eslint": "^7.7.0",
"eslint-config-preact": "https://github.com/ethanwu10/eslint-config-preact.git",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"ts-jest": "^26.3.0",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "./bin/prePush"
}
},
"lint-staged": {
"{app,spec}/*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md,ts,scss,sass,json}": "prettier --write",
"{app,spec,config/initializers}/*.rb": "./bin/rubocop -A"
}
}