-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) Β· 3.04 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) Β· 3.04 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@wpackio/scripts",
"version": "5.0.0",
"description": "Main single dependency of @wpackio build tool.",
"keywords": [
"wordpress",
"bundler",
"webpack",
"browser-sync",
"wordpress-bundler"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"wpackio-scripts": "lib/bin/index.js"
},
"repository": "https://github.com/swashata/wp-webpack-script",
"homepage": "https://wpack.io",
"author": "Swashata Ghosh <swashata4u@gmail.com> (https://swas.io)",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/core": "^7.11.1",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.1",
"@types/archiver": "^3.1.0",
"@types/babel__code-frame": "^7.0.1",
"@types/browser-sync": "^2.26.1",
"@types/gradient-string": "^1.1.1",
"@types/inquirer": "^7.3.0",
"@types/update-notifier": "^4.1.0",
"@types/webpack": "^4.41.8",
"@types/webpack-assets-manifest": "^3.0.1",
"@types/webpack-dev-middleware": "^3.7.1",
"@types/webpack-env": "^1.15.2",
"@types/webpack-hot-middleware": "^2.25.3",
"@wpackio/babel-preset-base": "^5.0.0",
"archiver": "^5.0.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.12",
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"commander": "^6.0.0",
"cpy": "8.1.1",
"css-loader": "^4.2.1",
"del": "^5.1.0",
"dev-ip": "^1.0.1",
"execa": "^4.0.3",
"figures": "^3.2.0",
"file-loader": "^6.0.0",
"find-up": "^4.1.0",
"gradient-string": "^1.2.0",
"handlebars": "^4.7.6",
"inquirer": "^7.3.3",
"less-loader": "^6.2.0",
"log-symbols": "^4.0.0",
"make-dir": "^3.1.0",
"mini-css-extract-plugin": "^0.12.0",
"open": "^7.1.0",
"ora": "^4.1.0",
"postcss-loader": "^3.0.0",
"pretty-error": "^2.1.1",
"react-refresh": "^0.9.0",
"sass-loader": "^9.0.3",
"slugify": "^1.4.5",
"time-fix-plugin": "^2.0.6",
"uglifyjs-webpack-plugin": "^2.2.0",
"update-notifier": "^4.1.0",
"webpack": "^5.0.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^5.1.1"
},
"engines": {
"node": ">=8.9.0"
},
"files": [
"lib",
"templates"
],
"scripts": {
"clean": "rimraf './lib' && rm -f ./tsconfig.tsbuildinfo",
"type-check": "tsc --emitDeclarationOnly",
"type-check:watch": "yarn type-check --watch",
"build:js": "babel ./src --out-dir lib --extensions '.ts,.tsx'",
"build:types": "tsc --emitDeclarationOnly",
"build": "yarn clean && yarn build:types && yarn build:js",
"build:watch": "yarn clean && yarn build:js --watch",
"lint": "eslint src --ext='.ts,.js'",
"test": "jest --color",
"prepare": "cross-env NODE_ENV=production yarn build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@wpackio/eslint-config": "^5.0.0",
"cross-env": "7.0.2",
"dts-gen": "0.6.0",
"fork-ts-checker-webpack-plugin": "5.2.1",
"less": "3.12.2",
"node-sass": "4.14.1",
"typescript": "3.9.7"
}
}