-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "phonograph",
"version": "1.3.3",
"description": "",
"homepage": "/",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "^4.0.0-alpha.38",
"audioqueue": "^1.1.1",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"dayjs": "^1.8.23",
"dompurify": "^2.0.10",
"encoding": "^0.1.12",
"idb-keyval": "^3.2.0",
"netlify-lambda": "^1.6.3",
"node-fetch": "^2.6.0",
"podcastsuite": "1.1.9",
"prop-types": "^15.7.2",
"randomcolor": "^0.5.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "5.1.2",
"react-router-dom": "^5.1.2",
"smallfetch": "^1.0.8",
"xml2js": "^0.4.22"
},
"private": true,
"browserslist": [
"last 1 Chrome versions"
],
"scripts": {
"start": "parcel public/index.html",
"build": "yarn getter && parcel build public/index.html && yarn SEO && yarn sw; yarn lambda:build",
"serve": "parcel serve public/index.html",
"SEO": "cp ./public/robots.txt ./dist/robots.txt",
"bundle": "parcel build public/index.html",
"lambda:build": "npx netlify-lambda build ./lambda",
"lambda:serve": "npx netlify-lambda serve ./lambda",
"dev": "yarn getter && node proxy && yarn lambda:serve",
"getter": "bash ./filegetter.sh",
"sw": "node swGenerator.js"
},
"alias": {
"public": "/public/"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cz-conventional-changelog": "3.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.3",
"parcel-bundler": "^1.12.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}