forked from swashata/wp-webpack-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) Β· 1.3 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": "wp-webpack-script",
"private": true,
"repository": "https://github.com/swashata/wp-webpack-script",
"homepage": "https://wpack.io",
"author": "Swashata Ghosh <swashata4u@gmail.com> (https://swas.io)",
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "^1.2.1",
"node": ">=8.9.0"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/preset-env": "7.14.8",
"@babel/preset-typescript": "7.14.5",
"@types/jest": "^26.0.24",
"@types/node": "^14.14.41",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "26.6.3",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"jest": "26.6.3",
"lerna": "^4.0.0",
"plop": "2.7.4",
"prettier": "^2.3.2",
"rimraf": "3.0.2",
"typescript": "^4.3.5"
},
"scripts": {
"clean": "lerna clean",
"type-check": "lerna run type-check",
"lint": "lerna run lint",
"test": "lerna run test",
"build": "lerna run build",
"plop": "plop",
"lerna": "lerna",
"nuke": "rm -r node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done",
"format": "lerna run format"
},
"resolutions": {
"@types/webpack": "^4.41.0"
}
}