-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
111 lines (111 loc) · 4.32 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
{
"name": "podverse-web",
"version": "4.16.6",
"description": "Web app for the Podverse podcast clip sharing ecosystem",
"repository": {
"type": "git",
"url": "git+https://github.com/podverse/podverse-web.git"
},
"contributors": [
"Creon Creonopoulos",
"Mitch Downey",
"Gary Johnson",
"Kyle Downey"
],
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/podverse/podverse-web/issues"
},
"homepage": "https://github.com/podverse/podverse-web#readme",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext .js,.ts,.tsx src/ pages/ __tests__/",
"lint:ts": "tsc --noEmit",
"lint:prettier": "npm run prettier:check",
"lint:stylelint": "stylelint '**/*.scss'",
"test": "jest --watch",
"test:ci": "jest --ci",
"stylelint:fix": "stylelint --fix '**/*.scss'",
"prettier:base": "prettier",
"prettier:list": "npm run prettier:base -- --list-different \"styles/**/*.scss\" \"src/**/*.{ts,tsx,scss}\" \"pages/**/*.{ts,tsx,scss}\" \"__tests__/**/*.{ts,js,tsx}\"",
"prettier:check": "npm run prettier:base -- --check \"styles/**/*.scss\" \"src/**/*.{ts,tsx,scss}\" \"pages/**/*.{ts,tsx,scss}\" \"__tests__/**/*.{ts,js,tsx}\"",
"prettier:write": "npm run prettier:base -- --write",
"prettier:fix": "npm run prettier:write -- \"styles/**/*.scss\" \"src/**/*.{ts,tsx,scss}\" \"pages/**/*.{ts,tsx,scss}\" \"__tests__/**/*.{ts,js,tsx}\"",
"test:e2e:local": "BROWSERSTACK_LOCAL_IDENTIFER=$(date) node __tests__/e2e/scripts/local.runner.js -c __tests__/e2e/conf/local.conf.js",
"test:e2e:parallel": "./node_modules/.bin/nightwatch -c __tests__/e2e/conf/parallel.conf.js -e chrome,firefox,ie",
"test:e2e:parallel_local": "BROWSERSTACK_LOCAL_IDENTIFER=$(date) node __tests__/e2e/scripts/local.runner.js -c __tests__/e2e/conf/parallel_local.conf.js -e chrome,firefox",
"test:e2e:single": "./node_modules/.bin/nightwatch -c __tests__/e2e/conf/single.conf.js",
"test:e2e:suite": "./node_modules/.bin/nightwatch -c __tests__/e2e/conf/suite.conf.js",
"test:e2e:suite_parallel": "./node_modules/.bin/nightwatch -c __tests__/e2e/conf/suite_parallel.conf.js -e chrome,firefox,ie"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.16",
"@podverse/react-dropdown-select": "4.8.4-beta.2",
"@podverse/react-show-more-text": "1.5.1-beta.2",
"axios": "1.6.0",
"classnames": "2.3.1",
"debounce": "1.2.1",
"linkify-html": "3.0.4",
"linkifyjs": "3.0.4",
"mermaid": "10.9.0",
"moment": "2.29.4",
"next": "12.3.4",
"next-i18next": "10.4.0",
"nightwatch": "3.7.0",
"omniaural": "1.3.3",
"password-validator": "5.2.1",
"podverse-shared": "4.15.2",
"re-resizable": "6.9.11",
"react": "17.0.2",
"react-cookie": "4.1.1",
"react-dom": "17.0.2",
"react-draggable": "4.4.6",
"react-draggable-list": "^4.1.0",
"react-h5-audio-player": "3.8.1",
"react-modal": "3.14.4",
"react-player": "2.10.1",
"react-show-more-text": "1.5.2",
"react-switch": "6.0.0",
"react-toast-notifications": "2.5.1",
"sanitize-html": "2.12.1",
"sass": "1.44.0",
"ssh2": "1.5.0",
"striptags": "3.2.0",
"transcriptator": "^1.1.0",
"webln-v4v": "1.0.0-beta.34"
},
"devDependencies": {
"@sentry/nextjs": "6.16.1",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.5.0",
"babel-jest": "27.4.6",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "8.3.0",
"jest": "27.4.7",
"lint-staged": "12.1.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"postcss-scss": "4.0.2",
"prettier": "2.5.0",
"stylelint": "^15.10.1",
"stylelint-config-recommended-scss": "^12.0.0",
"typescript": "4.5.2"
},
"resolutions": {
"@types/react": "17.0.37",
"@types/react-dom": "17.0.25"
}
}