This repository was archived by the owner on Mar 31, 2022. It is now read-only.
forked from jorge8989/statuspal-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 KB
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
{
"name": "statuspal-theme",
"version": "1.3.0",
"description": "Statuspal Theme",
"repository": "https://github.com/statuspal/statuspal-theme",
"main": "index.js",
"theme": {
"name": "default",
"description": "Theme with a top bar and small logo",
"version": "1.0.0",
"api_version": "1",
"defaults": {
"link_color": "0c91c3",
"header_bg_color1": "009688",
"header_bg_color2": "0c91c3",
"header_fg_color": "ffffff",
"incident_header_color": "009688",
"status_ok_color": "48CBA5",
"status_minor_color": "FFA500",
"status_major_color": "e75a53",
"status_maintenance_color": "5378c1"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"get-status-page": "node ./get-status-page.js",
"build": "webpack",
"start": "npm run get-status-page && concurrently 'npm run liquid-dev' webpack-dev-server",
"liquid": "node compile-liquid.js",
"liquid-dev": "npm run liquid && onchange 'src/templates/**/*' -- node compile-liquid.js",
"release": "NODE_ENV=production webpack -p && rm -f ./dist/templates/layout.liquid && (cd dist && zip -r theme.zip .)",
"dev": "npm run get-status-page && NODE_ENV=production webpack -p && mv ./dist/index.html ./dist/templates/status_page/index.liquid"
},
"author": "Eduardo Messuti",
"license": "MIT",
"dependencies": {
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.5.2",
"css-entry-webpack-plugin": "^1.0.0-beta.4",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-alpha.2",
"liquidjs": "^6.0.0",
"node-fetch": "^2.2.0",
"node-sass": "^4.9.3",
"onchange": "^4.1.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"devDependencies": {
"webpack-plugin-hash": "^1.0.3"
}
}