forked from epam/ketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.44 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
{
"private": true,
"workspaces": [
"packages/*",
"example",
"demo"
],
"scripts": {
"postinstall": "husky install",
"precommit": "lint-staged --allow-empty && yarn workspaces foreach -pv run prettier:write",
"prepush": "yarn workspaces foreach -pv run test:eslint",
"build": "yarn workspaces foreach -ptvR --from ketcher-react-app run build",
"build:demo": "yarn workspaces foreach -ptvR --from demo run build",
"test": "yarn workspaces foreach -v run test",
"serve:remote": "cd example && yarn serve:remote",
"serve:standalone": "cd example && yarn serve:standalone",
"serve": "run-p 'serve:remote' 'serve:standalone'",
"serve:demo": "cd demo && yarn run serve"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"color-alpha": "^1.1.3",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-workspaces": "^0.7.0",
"husky": "^8.0.2",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.0",
"prettier-config-standard": "^4.0.0",
"stylelint": "13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "22.0.0"
},
"packageManager": "[email protected]",
"resolutions": {
"react-error-overlay": "6.0.9"
}
}