-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "splatoon2.ink",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern --no-clean",
"lint": "vue-cli-service lint",
"cron": "node src/app/cron",
"start": "npm run sync:download && npm run splatnet && npm run twitter && npm run cron",
"locale-man": "node node_modules/locale-man/ -l en,es,es-MX,fr,fr-CA,de,nl,it,ru,ja -o src/locale",
"splatnet": "node src/app splatnet",
"twitter": "node src/app twitter",
"twitter:test": "node src/app twitterTest",
"sync": "node src/app sync",
"sync:upload": "node src/app syncUpload",
"sync:download": "node src/app syncDownload",
"utility:copyTranslation": "node src/utility copyTranslation",
"utility:getSplatNetLanguageFiles": "node src/utility getSplatNetLanguageFiles",
"utility:updateGear": "node src/utility updateGear"
},
"dependencies": {
"@atproto/api": "^0.13.16",
"@aws-sdk/client-s3": "^3.685.0",
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"bulma": "~0.6.1",
"bulma-tooltip": "~2.0.1",
"console-stamp": "^0.2.5",
"cozy-ical": "^1.1.22",
"cron": "^1.2.1",
"delay": "^4.4.0",
"dotenv": "^8.2.0",
"ecstatic": "^4.1.4",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^9.30.0",
"he": "^1.1.1",
"json-stable-stringify": "^1.0.1",
"jsonpath": "^1.0.0",
"lodash": "^4.17.4",
"make-runnable": "^1.3.6",
"mime-types": "^2.1.35",
"mkdirp": "^1.0.4",
"module-alias": "^2.1.0",
"moment-timezone": "^0.5.13",
"puppeteer": "^23.7.1",
"raven": "^2.1.1",
"s3-sync-client": "^4.3.1",
"sharp": "^0.33.5",
"twitter-api-v2": "^1.15.0",
"v-click-outside": "^3.0.1",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.4.2",
"vuex": "^3.5.1",
"vuex-i18n": "^1.13.1"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@fullhuman/vue-cli-plugin-purgecss": "~2.2.0",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"locale-man": "^0.0.5",
"sass": "^1.50.1",
"sass-loader": "^10",
"vue-template-compiler": "^2.6.11"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"firefox esr",
"not dead"
],
"_moduleAliases": {
"@": "src"
}
}