This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "knzklive",
"repository": "https://github.com/nzws/KnzkLive.git",
"author": "nzws <git@nzws.me>",
"license": "MPL-2.0",
"private": true,
"scripts": {
"start": "php -S localhost:10213 -t public/",
"ws:start": "node ws/index.js",
"lint:css": "stylelint **/*.scss",
"lint": "npm-run-all lint:* -s",
"fmt:md": "prettier --write '**/*.md'",
"fmt:yml": "prettier --write '**/*.{yaml,yml}'",
"fmt:json": "prettier --write '**/*.json'",
"fmt:css": "stylelint --fix **/*.scss && prettier --write '**/*.scss'",
"fmt:js": "prettier --write '**/*.js'",
"fmt:php": "composer fmt",
"fmt": "npm-run-all fmt:* -s",
"check:deps": "node ./scripts/check-deps.js",
"check:fmt:md": "prettier --check '**/*.md'",
"check:fmt:yml": "prettier --check '**/*.{yaml,yml}'",
"check:fmt:json": "prettier --check '**/*.json'",
"check:fmt:css": "prettier --check '**/*.scss'",
"check:fmt:js": "prettier --check '**/*.js'",
"check:fmt": "npm-run-all check:fmt:* -s",
"watch": "webpack --watch",
"build": "webpack",
"db:migrate": "composer phpmig migrate"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.3",
"bootstrap": "4",
"bootswatch": "4",
"express": "4.17.1",
"jquery": "3.6.0",
"moment": "2.29.2",
"mysql": "2.18.1",
"node-fetch": "2.6.7",
"popper.js": "1.16.1",
"socket.io-client": "4.1.2",
"striptags": "3.2.0",
"websocket": "1.0.34",
"ws": "7.4.6"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@nzws/prettier-config": "^1.0.1",
"autoprefixer": "10.2.6",
"babel-loader": "8.2.2",
"chalk": "4.1.1",
"clean-webpack-plugin": "4.0.0-alpha.0",
"css-loader": "5.2.6",
"cssnano": "5.0.5",
"file-loader": "6.2.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"log-symbols": "5.0.0",
"mini-css-extract-plugin": "1.6.0",
"npm-run-all": "4.1.5",
"postcss": "^8.3.0",
"postcss-loader": "5.3.0",
"prettier": "2.3.1",
"pretty-quick": "3.1.0",
"sass": "1.34.1",
"sass-loader": "11.1.1",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
"stylelint-scss": "3.19.0",
"stylelint-webpack-plugin": "2.1.1",
"terser-webpack-plugin": "5.1.3",
"webpack": "5.38.1",
"webpack-cli": "4.7.2",
"webpackbar": "5.0.0-3"
},
"prettier": "@nzws/prettier-config"
}