-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "ac-tune-maker",
"version": "1.0.0",
"description": "A website for making Animal Crossing tunes",
"license": "MIT",
"scripts": {
"dev": "concurrently yarn:bsb:watch yarn:webpack-dev-server",
"bsb:watch": "cross-env NINJA_ANSI_FORCED=1 bsb -make-world -w",
"fmt:ocamlformat": "ocamlformat --inplace src/*.ml src/*.mli",
"fmt:prettier": "prettier --write '**/*.{css,html,js,json,md,yaml,yml}' --ignore-path .gitignore",
"fmt": "yarn fmt:ocamlformat & yarn fmt:prettier",
"clean": "bsb -clean-world && shx rm -rf dist",
"build": "yarn run clean && bsb -make-world && webpack --mode production",
"postbuild": "shx cp static/meta.png static/CNAME dist/",
"deploy": "yarn run build && gh-pages -d dist --no-history"
},
"source": "src/index.html",
"dependencies": {
"bucklescript-tea": "^0.15.0",
"qrcode-generator": "^1.4.4",
"save-svg-as-png": "^1.4.17"
},
"devDependencies": {
"bs-platform": "^7.2.2",
"bsb-js": "^1.1.7",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"raw-loader": "^4.0.1",
"shx": "^0.3.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"terser-webpack-plugin": "^2.3.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-plugin-pwa-manifest": "^1.0.2",
"workbox-webpack-plugin": "^5.1.3"
},
"lint-staged": {
"*.{ml,mli}": "ocamlformat --inplace"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}