-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.88 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
{
"name": "icecast-status",
"version": "0.5.1",
"description": "checks the status of an icecast server",
"main": "public/main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --mode development --config webpack.config.js; npm run cp-html",
"tailwind-start": "tailwind build src/app.css -o public/dist/app.css",
"cp-html": "cp src/index.html public/; cp src/components/worker.js public/dist/clock-worker.js",
"build": "cross-env NODE_ENV=production webpack --mode production --config webpack.config.js",
"build:lambda": "netlify-lambda build ./src/lambda",
"build:tailwind": "postcss src/app.css --output public/dist/app.css --env production",
"production": "npm run build; npm run build:tailwind; npm run cp-html;",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReeceM/icecast-status.git"
},
"keywords": [
"icecast",
"tailwindcss",
"status",
"javascript"
],
"author": "ReeceM",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReeceM/icecast-status/issues"
},
"homepage": "https://icecast-status.netlify.app",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@tailwindcss/ui": "^0.3.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"netlify-lambda": "^1.6.3",
"postcss-cli": "^7.1.0",
"postcss-loader": "^3.0.0",
"tailwindcss": "^1.4.6",
"terser-webpack-plugin": "^3.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"alpinejs": "^2.3.5",
"axios": "^0.21.2"
}
}