Files
learn/frontend/package.json
2026-01-30 21:50:43 +01:00

151 lines
3.9 KiB
JSON

{
"name": "learn",
"version": "1.0.0",
"type": "module",
"description": "",
"private": true,
"dependencies": {
"ace-builds": "^1.43.6",
"acorn": "^8.15.0",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"lato-font": "^3.0.0",
"pygments": "^0.2.1",
"roboto-fontface": "^0.10.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/ace": "^0.0.52",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/chai-dom": "^1.11.3",
"@types/file-saver": "^2.0.7",
"@types/js-cookie": "^3.0.6",
"@types/jsdom": "^27.0.0",
"@types/jszip": "^3.4.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.9",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"amd-loader": "^0.0.8",
"autoprefixer": "^10.4.24",
"babel-loader": "^10.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"chai-dom": "^1.12.1",
"chunks-2-json-webpack-plugin": "^1.0.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.3",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^61.7.1",
"eslint-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.6",
"ifdef-loader": "^2.3.2",
"imports-loader": "^5.0.0",
"istanbul-lib-instrument": "^6.0.3",
"jsdom": "^27.4.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^2.10.0",
"mocha": "^11.7.5",
"mock-socket": "^9.3.1",
"node-fetch": "^3.3.2",
"nyc": "^17.1.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"sass": "^1.97.3",
"sass-lint": "^1.13.1",
"sass-lint-webpack": "^1.0.4",
"sass-loader": "^16.0.6",
"source-map-loader": "^5.0.0",
"source-map-support": "^0.5.21",
"terser-webpack-plugin": "^5.3.16",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-cookies": "^0.0.5",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.3.3",
"webpack-watch-files-plugin": "^1.2.1"
},
"resolutions": {
"minimist": "^1.2.8",
"acorn": "^8.11.3",
"is-svg": "^5.0.1",
"ssri": "^10.0.6",
"whatwg-url": "^14"
},
"scripts": {
"dev": "webpack serve --open --config webpack.dev.cjs --mode=development",
"tsc": "tsc --noEmit",
"eslint": "eslint --ext .ts src/ tests/",
"sandbox": "webpack --env sandbox --config webpack.prod.cjs",
"production": "webpack --config webpack.prod.cjs",
"test": "TS_NODE_COMPILER_OPTIONS='{\"strict\":false}' mocha --exit",
"cover": "nyc yarn run test",
"doc": "typedoc src --out docs"
},
"author": "AdaCore",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"eslintConfig": {
"plugins": [
"jsdoc"
],
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:jsdoc/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"jsdoc/no-undefined-types": "off",
"max-len": [
"error",
{
"ignoreRegExpLiterals": true
}
]
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"branches": ">75",
"lines": ">80",
"functions": ">80",
"statements": ">80",
"include": [
"src/**/*.ts"
],
"reporter": [
"lcov",
"text"
],
"exclude": [
"src/index.ts"
]
},
"packageManager": "yarn@4.12.0"
}