forked from tervay/recalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.69 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.69 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
124
125
{
"name": "recalc-ts",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18"
},
"dependencies": {
"@creativebulma/bulma-divider": "^1.1.0",
"@creativebulma/bulma-tooltip": "^1.2.0",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.1.1",
"@tippyjs/react": "^4.2.6",
"@types/node": "^20.2.5",
"@types/react": "^17.0.40",
"@types/react-dom": "^18.0.3",
"adze": "^1.9.1",
"bulma": "^0.9.4",
"chart.js": "^3.8.0",
"chartjs-plugin-zoom": "^1.2.1",
"crypto-js": "^4.1.1",
"fast-cartesian": "^8.0.0",
"js-quantities": "^1.7.6",
"katex": "^0.16.7",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"marked": "^5.0.4",
"multipermute": "^1.0.0",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-chartjs-2": "^4.3.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.3.4",
"react-table": "^7.8.0",
"react-use-promise": "^0.5.0",
"serialize-query-params": "^1.3.6",
"tinycolor2": "^1.6.0",
"tippy.js": "^6.3.7",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.1.3",
"use-query-params": "^1.2.2",
"vitest": "^0.30.1",
"web-vitals": "^3.3.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": ". ./.env && vitest",
"--------------------------------": "------------------------",
"dev:analyze": "source-map-explorer 'build/static/js/*.js' --html coverage/src_map_explorer.html",
"dev:coverage": "yarn test --coverage",
"dev:format": "npx prettier . --write && npx eslint src/ --fix",
"dev:encrypt": "npx ts-node -O '{\"module\":\"commonjs\"}' scripts/encrypt.ts",
"dev:logs": "npx ts-node -O '{\"module\":\"commonjs\"}' scripts/decodeLogs.ts",
"dev:webp": "node scripts/webp.mjs",
"dev:cypress": "yarn run cypress open",
"dev:cypress-run": "yarn run cypress run",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jedmao/location": "^3.0.0",
"@types/crypto-js": "^4.1.1",
"@types/google-spreadsheet": "^3.2.2",
"@types/js-quantities": "^1.6.3",
"@types/katex": "^0.16.0",
"@types/lodash": "^4.14.195",
"@types/lz-string": "^1.5.0",
"@types/marked": "^5.0.0",
"@types/react-helmet": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"@types/react-table": "^7.7.14",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "^0.31.0",
"cypress": "^12.12.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"imagemin": "^8.0.1",
"imagemin-webp": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "3.2.2",
"sass": "^1.62.1",
"source-map-explorer": "^2.5.3",
"type-fest": "^3.11.1",
"typescript-plugin-css-modules": "^5.0.1",
"vite": "^4.3.9",
"vite-plugin-svgr": "^3.2.0",
"vite-plugin-top-level-await": "^1.3.1",
"vite-tsconfig-paths": "^4.2.0"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}