forked from epam/miew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.39 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
{
"name": "monorepo",
"version": "1.0.0",
"main": "packages/lib/dist/Miew.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged --allow-empty",
"prepush": "yarn workspaces foreach -pv run eslint",
"build": "yarn workspaces foreach -ptv run build",
"test": "yarn workspaces foreach -ptv run test ",
"serve": "cd demo && yarn serve",
"merge-cover": "lcov-result-merger 'coverage/lcov_*.info' > coverage/general.info",
"coveralls": "cat coverage/general.info | coveralls",
"build:ci": "yarn workspaces foreach -ptv run ci",
"build:docs": "jsdoc -c jsdoc.config.js",
"build:examples": "run-s 'build:examples:*'",
"build:examples:viewer": "mkdirp examples/build/fullscreen && ncp examples/fullscreen.html examples/build/fullscreen/index.html",
"build:examples:webpack": "cd examples/ && webpack --mode production --config miew_via_webpack.config.js",
"build:examples:browserify": "cd examples/ && browserify -e miew_via_browserify.js -o build/miew_via_browserify.bundle.js",
"build:examples:react": "cd examples/ && webpack --mode production --config miew_via_react.config.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"browserify": "^16.5.1",
"coveralls": "^3.1.0",
"css-loader": "^3.5.3",
"eslint": "^8.4.1",
"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-react": "^7.27.1",
"eslint-plugin-workspaces": "^0.7.0",
"husky": "7.0.4",
"jsdoc": "^3.6.7",
"lcov-result-merger": "^3.1.0",
"lint-staged": "^12.1.2",
"mkdirp": "^1.0.3",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.2",
"prettier": "^2.5.1",
"prettier-config-standard": "^4.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"style-loader": "^1.2.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"packageManager": "[email protected]"
}