forked from ashleyfae/book-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "book-database",
"title": "Book Database",
"version": "1.0.0",
"description": "Maintain a database of books and reviews.",
"author": "Ashley Gibson",
"license": "GPL-2.0-or-later",
"keywords": [
"books",
"wordpress",
"wordpress-plugin"
],
"homepage": "https://github.com/nosegraze/book-database#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nosegraze/book-database.git"
},
"bugs": {
"url": "https://github.com/nosegraze/book-database/issues"
},
"main": "webpack.config.js",
"devDependencies": {
"@wordpress/scripts": "^5.1.0",
"css-loader": "^3.2.0",
"ignore-emit-webpack-plugin": "^2.0.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^8.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "wp-scripts build",
"dev": "wp-scripts start",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses --production",
"i18n": "wp i18n make-pot . languages/book-database.pot --domain=book-database",
"build-css": "node-sass assets/sass -o assets/css --output-style=compressed",
"watch-css": "npm run build-css && npm run build-css -- -w"
},
"dependencies": {
"moment": "^2.24.0",
"npm": "^6.13.1",
"sass": "^1.23.7"
}
}