-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (83 loc) · 3.89 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": "otoge-db",
"id": "otoge-db",
"version": "1.0.0",
"description": "Song information viewer for Ongeki",
"keywords": [
"ongeki",
"chunithm",
"maimai"
],
"repository": {
"type": "git",
"url": "https://github.com/zvuc/otoge-db"
},
"homepage": "https//ongeki.info",
"license": "MIT",
"author": {
"name": "Hansol Kim <[email protected]>",
"url": "https://xenosium.com"
},
"dependencies": {
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"concurrently": "^8.2.2",
"cssnano": "^4.1.10",
"imageoptim-cli": "^3.0.2",
"less": "^3.11.1",
"minify": "^6.0.0",
"postcss-cli": "^7.1.1",
"postcss-load-config": "^2.1.0",
"postcss-plugin": "^1.0.0",
"pug": "^3.0.3",
"pug-cli": "^1.0.0-alpha6",
"watch": "^1.0.2"
},
"postcss": {
"map": false,
"plugins": {
"autoprefixer": {},
"cssnano": {}
}
},
"less-watch-compiler": {
"minified": false
},
"scripts": {
"update": "yarn fetch && yarn imageoptim",
"imageoptim": "cat diffs.txt | xargs imageoptim",
"build": "yarn shared-build & yarn ongeki-build & yarn chunithm-build & yarn maimai-build",
"less": "yarn ongeki-less & yarn chunithm-less & yarn maimai-less",
"postcss": "yarn ongeki-postcss & yarn chunithm-postcss & yarn maimai-postcss",
"minify": "yarn shared-minify & yarn ongeki-minify & yarn chunithm-minify & yarn maimai-minify",
"watch": "concurrently \"yarn shared-watch\" \"yarn ongeki-watch\" \"yarn chunithm-watch\" \"yarn maimai-watch\"",
"datatables-minify": "minify shared/src/datatables/datatables.custom.js > shared/datatables.custom.min.js",
"fetch-songs": "python3 scripts/update-songs.py --skipwiki",
"fetch-wiki": "python3 scripts/update-wiki-data.py",
"fetch-chartguide": "python3 scripts/update-chartguide-data.py",
"fetch-const": "python3 scripts/update-const.py",
"fetch-intl": "python3 scripts/update-intl.py",
"shared-build": "yarn shared-minify",
"shared-minify": "minify shared/src/js/shared.*.js > shared/shared-functions.js & minify shared/src/js/early-functions.js > shared/early-functions.js",
"shared-watch": "watch 'yarn shared-build' ./shared/src/js -d",
"ongeki-build": "yarn ongeki-pug & yarn ongeki-minify & (yarn ongeki-less && yarn ongeki-postcss)",
"ongeki-less": "lessc ./ongeki/src/less/ongeki.less ./ongeki/style.css",
"ongeki-postcss": "postcss ./ongeki/style.css -o ./ongeki/style.css --verbose",
"ongeki-minify": "minify ongeki/src/js/*.js > ongeki/ongeki-functions.js",
"ongeki-pug": "yarn pug ongeki/src/pug/index.pug -o ongeki & yarn pug ongeki/src/pug/lv/index.pug -o ongeki/lv",
"ongeki-watch": "watch 'yarn ongeki-build' ./shared/src/less ./shared/src/pug ./ongeki/src -d",
"chunithm-build": "yarn chunithm-pug & yarn chunithm-minify & (yarn chunithm-less && yarn chunithm-postcss)",
"chunithm-less": "lessc ./chunithm/src/less/chunithm.less ./chunithm/style.css",
"chunithm-postcss": "postcss ./chunithm/style.css -o ./chunithm/style.css --verbose",
"chunithm-minify": "minify chunithm/src/js/*.js > chunithm/chunithm-functions.js",
"chunithm-pug": "yarn pug chunithm/src/pug/index.pug -o chunithm & yarn pug chunithm/src/pug/lv/index.pug -o chunithm/lv",
"chunithm-watch": "watch 'yarn chunithm-build' ./shared/src/less ./shared/src/pug ./chunithm/src -d",
"maimai-build": "yarn maimai-pug & yarn maimai-minify & (yarn maimai-less && yarn maimai-postcss)",
"maimai-less": "lessc ./maimai/src/less/maimai.less ./maimai/style.css",
"maimai-postcss": "postcss ./maimai/style.css -o ./maimai/style.css --verbose",
"maimai-minify": "minify maimai/src/js/*.js > maimai/maimai-functions.js",
"maimai-pug": "yarn pug maimai/src/pug/index.pug -o maimai & yarn pug maimai/src/pug/lv/index.pug -o maimai/lv",
"maimai-watch": "watch 'yarn maimai-build' ./shared/src/less ./shared/src/pug ./maimai/src -d"
}
}