forked from cameronterry/dark-matter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 2.03 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "dark-matter",
"version": "2.1.1",
"description": "Domain Mapping plugin for WordPress.",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"build-dev": "NODE_ENV=development webpack --mode none",
"build-all": "npm run build && npm run build-dev",
"lint": "composer lint && eslint",
"lint-js": "eslint",
"release": "composer install --no-dev --optimize-autoloader && npm install && npm run build-all",
"start": "composer install && npm install && npm run build-all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint-js"
],
"*.php": [
"composer run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cameronterry/dark-matter.git"
},
"author": "Cameron Terry",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/cameronterry/dark-matter/issues"
},
"homepage": "https://github.com/cameronterry/dark-matter#readme",
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@wordpress/eslint-plugin": "^6.1.0",
"babel-loader": "^8.1.0",
"caniuse-lite": "^1.0.30001109",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"eslint": "^7.6.0",
"eslint-loader": "^4.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.8",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-fix-style-only-entries": "^0.4.0",
"webpackbar": "^4.0.0"
},
"dependencies": {
"@babel/runtime": "^7.11.0",
"@wordpress/i18n": "^3.14.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}