-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.83 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.83 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "interlinearizer",
"private": true,
"version": "0.0.1",
"main": "src/main.js",
"types": "src/types/interlinearizer.d.ts",
"author": "SIL Global",
"license": "MIT",
"scripts": {
"build:web-view": "webpack --config ./webpack/webpack.config.web-view.ts",
"build:main": "webpack --config ./webpack/webpack.config.main.ts",
"build": "webpack",
"watch": "npm run build -- --watch",
"build:production": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=false webpack",
"watch:production": "npm run build:production -- --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"zip": "zip-build dist release --template '%NAME%_%VERSION%.%EXT%' --override",
"package": "npm run build:production && npm run zip",
"package:debug": "cross-env DEBUG_PROD=true npm run package",
"start": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch\" \"npm:core:start\"",
"start:production": "cross-env MAIN_ARGS=\"--extensions $INIT_CWD/dist\" concurrently \"npm:watch:production\" \"npm:core:start\"",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:typecheck",
"lint:scripts": "cross-env NODE_ENV=development eslint --ext .cjs,.js,.jsx,.ts,.tsx --cache .",
"lint:styles": "stylelint **/*.{css,scss} --allow-empty-input",
"lint:typecheck": "tsc --noEmit",
"lint-fix": "npm run lint-fix:scripts && npm run lint:styles -- --fix",
"lint-fix:scripts": "npm run format && npm run lint:scripts",
"bump-versions": "ts-node ./lib/bump-versions.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"core:start": "npm --prefix ../paranext-core start",
"core:stop": "npm --prefix ../paranext-core stop",
"core:reset": "npm run core:stop && node ./scripts/delete-temp-files.cjs --core --ext",
"core:reinstall": "npm run core:reset && node ./scripts/delete-temp-files.cjs --npm && npm run core:update && npm i",
"core:install": "npm --prefix ../paranext-core install",
"core:pull": "git -C ../paranext-core pull --ff-only",
"core:update": "npm run core:pull && npm run core:install"
},
"browserslist": [],
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"@sillsdev/scripture": "^2.0.5",
"fast-xml-parser": "^5.3.4",
"platform-bible-utils": "file:../paranext-core/lib/platform-bible-utils"
},
"devDependencies": {
"@dreamsicle.io/stylelint-config-tailwindcss": "^1.2.2",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"@swc/core": "1.13.3",
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.13",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^9.1.2",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-type-assertion": "^1.3.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"glob": "^10.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lucide-react": "^1.8.0",
"papi-dts": "file:../paranext-core/lib/papi-dts",
"platform-bible-react": "file:../paranext-core/lib/platform-bible-react",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"prettier": "^3.5.2",
"prettier-plugin-jsdoc": "^1.3.2",
"sass": "^1.85.0",
"sass-loader": "^16.0.5",
"shadcn": "^4.3.0",
"stylelint": "^16.17.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"swc-loader": "^0.2.6",
"tailwindcss": "^4.3.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.8.3",
"webpack": "^5.105.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1",
"zip-build": "^1.8.0"
},
"overrides": {
"eslint-config-airbnb": {
"eslint-plugin-react-hooks": "$eslint-plugin-react-hooks"
}
},
"volta": {
"node": "22.22.0"
}
}