-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.66 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
{
"name": "material-board",
"description": "The Material Board plugin for WordPress updates the appearance of your site's dashboard to a sleeker, more contemporary design based on [Google's Material Design Guidelines](https://material.io/design). This plugin preserves your existing dashboard layout, avoids making any significant alterations, and doesn't include any branding or promotional content. It's straightforward to use and comes at no cost.",
"private": false,
"directories": {
"doc": "docs"
},
"scripts": {
"build": "zsh scripts/bundle.sh",
"build:dev": "zsh scripts/bundle.sh --dev",
"watch": "concurrently \"npx ts-node watch.ts\" \"tsc --watch --outDir build/material-board\" \"sass --watch src/:build/material-board\"",
"dev": "npm run build:dev && npm run watch",
"dev:docker": "npm run build:dev && docker-compose up -d && npm run watch",
"dev:wasm": "npm run build:dev && concurrently \"wp-now start --path=build/material-board\" \"npm run watch\"",
"dev:wasm:reset": "npm run build:dev && concurrently \"wp-now start --reset --path=build/material-board\" \"npm run watch\"",
"mmg": "bash scripts/multilingual_markdown.sh",
"svn:tag": "zsh scripts/svn_create_tag.sh",
"svn:reset": "cd svn/ && svn revert --recursive . && svn cleanup . --remove-unversioned --remove-ignored && cd ..",
"start": "npm run dev:docker",
"stop": "docker-compose down"
},
"keywords": [],
"author": "Fatih Balsoy",
"license": "AGPL-3.0",
"devDependencies": {
"concurrently": "^8.0.1",
"sass": "^1.62.1",
"sass-loader": "^12.6.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"uglify-js": "^3.17.4"
}
}