-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.82 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
{
"name": "smart-docs",
"version": "1.0.0",
"description": "SmartDocs is a simple to use documentation plugin for WordPress that makes it very easy to setup fast and efficient documentation on your websites.",
"keywords": [],
"author": "IdeaBox Creations",
"license": "GPL-2.0-only",
"main": "build/index.js",
"scripts": {
"build": "npm run build:settings && npm run build:blocks",
"build:settings": "wp-scripts build src/settings/index.js --output-path=assets/admin/",
"build:blocks": "wp-scripts build src/blocks/index.js --output-path=assets/blocks/",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "npm run start:settings && npm run start:blocks",
"start:settings": "wp-scripts start src/settings/index.js --output-path=assets/admin/ ",
"start:blocks": "wp-scripts start src/blocks/index.js --output-path=assets/blocks/",
"packages-update": "wp-scripts packages-update",
"makepot": "grunt makepot",
"ver-bump": "grunt version-bump --ver"
},
"dependencies": {
"node-sass": "^4.14.1",
"react-notifications-component": "^2.4.0",
"tailwindcss": "^1.9.0"
},
"devDependencies": {
"@wordpress/scripts": "^12.3.0",
"grunt": "^1.3.0",
"grunt-bumpup": "^0.6.3",
"grunt-checktextdomain": "^1.0.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-phpcs": "^0.4.0",
"grunt-text-replace": "^0.4.0",
"grunt-wp-i18n": "^1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloideabox/smart-docs.git"
},
"bugs": {
"url": "https://github.com/helloideabox/smart-docs/issues"
},
"homepage": "https://github.com/helloideabox/smart-docs#readme"
}