-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
{
"name": "v5.21.0",
"version": "0.1.0",
"private": true,
"dependencies": {
"@webiny/cli": "5.21.0",
"@webiny/cli-plugin-deploy-pulumi": "5.21.0",
"@webiny/cli-plugin-scaffold": "5.21.0",
"@webiny/cli-plugin-scaffold-react-component": "5.21.0",
"@webiny/cli-plugin-workspaces": "5.21.0",
"@webiny/project-utils": "5.21.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^12.12.22",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-emotion": "^10.0.27",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-named-asset-import": "^1.0.0-next.154",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.3.2",
"typescript": "4.1.3"
},
"workspaces": {
"packages": [
"packages/*",
"packages/button",
"packages/banner"
]
},
"scripts": {
"build": "yarn webiny ws run build",
"watch": "yarn webiny watch -p \"*/*\"",
"eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --max-warnings=0",
"eslint:fix": "yarn eslint --fix",
"prettier": "prettier \"**/**/*.{js,jsx,ts,tsx,json}\" --config .prettierrc.js",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write",
"link-workspaces": "node ./scripts/linkWorkspaces.js",
"postinstall": "yarn link-workspaces"
},
"resolutions": {
"@types/react": "16.14.4",
"react": "16.14.0",
"typescript": "4.1.3",
"react-dom": "16.14.0"
}
}