forked from swashata/wp-webpack-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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 <[email protected]> (https://swas.io)",
"workspaces": [
"packages/*"
],
"engines": {
"yarn": "^1.2.1",
"node": ">=8.9.0"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "24.0.15",
"@types/node": "11.13.15",
"@wpquark/eslint-config": "3.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.8.0",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"jest": "24.8.0",
"lerna": "3.15.0",
"plop": "2.4.0",
"prettier": "1.17.1",
"rimraf": "2.6.3",
"typescript": "3.5.2"
},
"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"
},
"resolutions": {
"@types/webpack": "^4.4.24"
}
}