-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.92 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
{
"name": "quad-image",
"scripts": {
"build": "webpack --mode=production",
"test": "jest",
"test:component": "cypress run --component",
"lint": "eslint 'web/**/*.ts*' 'tests/web/**/*.ts*'",
"lint-fix": "eslint --fix 'web/**/*.ts*' 'tests/web/**/*.ts*'",
"format": "prettier --write 'web/**/*.ts*' 'tests/web/**/*.ts*'",
"watch": "webpack --watch --mode=development",
"bundle-size": "webpack --mode=production --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx-source": "^7.22.5",
"@babel/preset-env": "^7.22.14",
"@babel/preset-typescript": "^7.22.11",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/preact": "^3.2.3",
"@tsconfig/recommended": "^1.0.3",
"@types/jquery": "^3.3.31",
"@types/node": "^20.11.2",
"@types/number-to-words": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"canvas": "^2.11.2",
"copy-webpack-plugin": "^12",
"cypress": "^13.6.6",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.0.0",
"html-webpack-plugin": "^5.5.3",
"ignore-loader": "^0.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jquery": "^3.4.1",
"jsonapi-typescript": "0.1.3",
"mdi-preact": "^9.2.0",
"prettier": "~3.3",
"svg-url-loader": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5",
"url-loader": "^4.1.0",
"webpack": "~5.93",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.0"
},
"dependencies": {
"history": "^5.3.0",
"number-to-words": "^1.2.4",
"preact": "^10.17",
"preact-fetching": "^1.0.0",
"preact-router": "^4.1",
"serialize-error": "^11"
}
}