This repository has been archived by the owner on May 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.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
{
"name": "learnchinese.club",
"version": "0.0.6",
"description": "Lists recent YouTube videos for Chinese language learning",
"homepage": "https://learnchinese.club",
"scripts": {
"dev:site": "npm run dev --prefix site",
"dev:server": "serverless offline start --watch --printOutput",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:site\"",
"build:site": "npm run build --prefix site",
"deploy:site": "npm run build:site && npm run deploy --prefix site",
"deploy:server": "serverless deploy --env production --stage prod",
"update:videos": "serverless invoke local -f update_videos",
"update:videos:longtail": "serverless invoke local -f update_videos_longtail",
"update:videos:prod": "serverless invoke local -f update_videos --env production",
"update:videos:both": "npm run update:videos && npm run update:videos:prod",
"update:channels": "serverless invoke local -f update_channels",
"update:channels:prod": "serverless invoke local -f update_channels --env production",
"update:channels:both": "npm run update:channels && npm run update:channels:prod",
"update:all": "npm run update:channels:both && npm run update:videos:both",
"rebuild:github": "npm run rebuild:github --prefix site",
"sync:channels": "sh utils/dbsync.sh -e -C -i -b",
"sync:videos": "sh utils/dbsync.sh -e -V -i -b",
"backup:prod": "sh utils/dbsync.sh -e -C -V -b",
"backup:local": "sh utils/dbsync.sh -e -l -C -V -b",
"test": "babel-node -r dotenv/config test.js dotenv_config_path=.env.development",
"test:prod": "babel-node -r dotenv/config test.js dotenv_config_path=.env.production"
},
"keywords": [
"chinese",
"youtube",
"language learning"
],
"author": "Joost Schuur <jschuur@jschuur.com>",
"license": "ISC",
"dependencies": {
"api-query-params": "^4.15.0",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"dotenv": "^8.2.0",
"google-spreadsheet": "^3.0.11",
"googleapis": "^48.0.0",
"group-array": "^1.0.0",
"lodash.chunk": "^4.2.0",
"moment": "^2.25.3",
"mongoose": "^5.9.12",
"pluralize": "^8.0.0",
"rss-parser": "^3.8.0",
"saslprep": "^1.0.3",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"aws-sdk": "^2.672.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"concurrently": "^5.2.0",
"corejs": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"prettier": "^2.0.5",
"serverless": "^1.70.0",
"serverless-domain-manager": "^3.3.2",
"serverless-dotenv-plugin": "^2.4.2",
"serverless-offline": "^6.1.5",
"serverless-offline-dotenv": "0.0.16",
"serverless-prune-plugin": "^1.4.2",
"serverless-webpack": "^5.3.2",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jschuur/learnchinese.club"
},
"bugs": {
"url": "https://github.com/jschuur/learnchinese.club/issues"
}
}