This repository was archived by the owner on Jan 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.28 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
{
"name": "wordpress-ui",
"version": "1.1.1",
"author": "Brandon Nifong <brandon@tendency.me>",
"homepage": "https://github.com/log1x/wordpress-ui",
"repository": {
"type": "git",
"url": "git://github.com/log1x/wordpress-ui.git"
},
"bugs": {
"url": "https://github.com/log1x/wordpress-ui/issues"
},
"main": "assets/scripts/main.js",
"scripts": {
"build": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build:production": "npm run -s clean && NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"clean": "npm run -s clean:dist",
"clean:dist": "rimraf dist"
},
"engines": {
"node": ">= 6.9.4"
},
"devDependencies": {
"laravel-mix": "^4.0.15",
"rimraf": "^2.6.3",
"sass": "^1.17.3",
"sass-loader": "^7.1.0",
"stylelint": "^9.10.1",
"stylelint-scss": "^3.5.4",
"stylelint-webpack-plugin": "^0.10.5",
"vue-template-compiler": "^2.6.9"
},
"dependencies": {
"dayjs": "^1.8.10",
"jquery": "^3.3.1",
"stylelint-config-standard": "^18.2.0"
}
}