forked from epam/ketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.7 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
68
69
70
71
72
73
{
"name": "ketcher",
"private": true,
"workspaces": [
"packages/ketcher-core",
"packages/ketcher-standalone",
"packages/ketcher-macromolecules",
"packages/ketcher-react",
"ketcher-autotests",
"example",
"example-ssr",
"demo"
],
"scripts": {
"postinstall": "husky install",
"precommit": "lint-staged --allow-empty && npm run prettier:write --workspaces --if-present",
"prepush": "npm run test && npm run check:autotests",
"build": "npm run build:packages && npm run build:example",
"build:example:standalone": "npm run build:standalone -w example",
"build:example:remote": "npm run build:remote -w example",
"build:core": "npm run build -w ketcher-core",
"build:standalone": "npm run build -w ketcher-standalone",
"build:react": "npm run build -w ketcher-react",
"build:macromolecules": "npm run build -w ketcher-macromolecules",
"build:packages": "npm run build:core && run-p build:standalone build:react && npm run build:macromolecules",
"build:example": "npm run build -w example",
"build:demo": "npm run build:packages && npm run build -w demo",
"test": "npm run test --workspace=packages/ketcher-core --workspace=packages/ketcher-react --workspace=packages/ketcher-standalone --workspace=packages/ketcher-macromolecules",
"check:autotests": "cd ketcher-autotests && npm run check:code",
"serve:remote": "cd example && npm run serve:remote",
"serve:standalone": "cd example && npm run serve:standalone",
"serve": "run-p serve:remote serve:standalone",
"serve:demo": "cd demo && npm run serve"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"color-alpha": "^1.1.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-workspaces": "^0.7.0",
"husky": "^8.0.3",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.0",
"prettier-config-standard": "^5.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "22.0.0"
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0",
"yarn": "YARN IS NO LONGER USED, PLEASE USE NPM\nConversion instructions can be found in DEVNOTES.md"
},
"overrides": {
"minimatch": "^9.0.3",
"nth-check": "^2.1.1",
"postcss": "8.4.31"
},
"dependencies": {
"@playwright/test": "^1.44.1"
}
}