forked from apertium/apertium-html-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.1 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
{
"name": "apertium-html-tools",
"version": "5.1.8",
"author": "Sushain Cherivirala <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "ts-node build.ts",
"serve": "python3 -m http.server --directory dist",
"tsc": "tsc --noEmit",
"eslint": "eslint . --ext .ts,.tsx --max-warnings 0",
"stylelint": "stylelint 'src/**/*.css' --max-warnings 0",
"test": "jest",
"prettier": "prettier . --check",
"verify": "$npm_execpath run tsc && $npm_execpath run eslint && $npm_execpath stylelint && $npm_execpath run prettier && $npm_execpath run test",
"coverage": "jest --silent --coverage"
},
"dependencies": {
"@datapunt/matomo-tracker-react": "^0.5.1",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.14",
"axios": "^0.28.0",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.2",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.1.4",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/react-dom": "^17.0.3",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"esbuild": "^0.14.0",
"esbuild-jest": "^0.4.0",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-mock-axios": "^4.4.0",
"prettier": "^2.5.1",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.2.4"
}
}