forked from wiris/html-integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.85 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
{
"name": "@wiris/html-integrations",
"private": true,
"homepage": "https://www.wiris.com/?utm_source=npmjs&utm_medium=referral",
"bugs": {
"email": "[email protected]"
},
"scripts": {
"preinstall": "node packages/res/git-data.mjs",
"postinstall": "rm -rf ~/.config/yarn/link/* && for d in packages/*/ ; do (cd $d && yarn link); done",
"test-old": "node scripts/services/executeTests.js",
"test": "nx run-many --target=test --all --parallel",
"test:ci": "docker run -v $PWD:/cypress --net=host -w /cypress -e CYPRESS_PROJECT_ID --entrypoint=cypress cypress/included:7.5.0 run --project .",
"build": "cd demos/html/generic && npm install && npm start &",
"lint": "npm run lint-js && npm run lint-html && npm run lint-css",
"lint-js": "eslint ${npm_config_route-.} --ext .js",
"lint-html": "html-validate ${npm_config_route-.}",
"lint-css": "stylelint \"${npm_config_route-**/*.css}\"",
"build-jsdoc-validation": "link-checker packages/mathtype-html-integration-devkit/out/"
},
"devDependencies": {
"@nrwl/js": "16.5.1",
"@nrwl/tao": "16.5.1",
"@nx/cypress": "16.5.1",
"@nx/eslint-plugin": "16.5.1",
"@nx/linter": "16.5.1",
"@nx/web": "16.5.1",
"@nx/webpack": "16.5.1",
"@nx/workspace": "16.5.1",
"@types/node": "18.0.0",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0",
"cypress": "^9.3.1",
"cypress-fail-fast": "^5.0.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsdoc": "^40.0.0",
"html-validate": "^6.0.2",
"jest": "^29.6.1",
"nx": "16.5.1",
"nx-cloud": "^16.2.0",
"typescript": "~4.5.2"
},
"license": "MIT",
"author": "WIRIS Team (https://www.wiris.com)",
"workspaces": [
"packages/**",
"demos/**"
]
}