-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.23 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.23 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
{
"name": "initium",
"version": "0.0.0",
"license": "GPL-3.0",
"scripts": {
"webpack": "source config/env && webpack --progress",
"start": "export NODE_OPTIONS='--no-webstorage' && npm run dist && npm run webpack -- --watch",
"dist": "rm -rf dist && mkdir dist",
"test": "export NODE_OPTIONS='--no-webstorage' && vitest",
"test-once": "vitest run",
"build": "export NODE_OPTIONS='--no-webstorage' && npm run test-once && npm run dist && npm run webpack -- --env prod && node build.js"
},
"dependencies": {
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@js-temporal/polyfill": "^0.5.1",
"city-timezones": "^1.3.3",
"file-saver": "^2.0.5",
"idb-keyval": "^6.2.2",
"jszip": "^3.10.1",
"marked": "^17.0.5",
"react": "^19.2.4",
"react-compiler-runtime": "^1.0.0",
"react-dom": "^19.2.4",
"type-fest": "^5.5.0"
},
"devDependencies": {
"@eslint/css": "^1.1.0",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.37",
"@types/file-saver": "^2.0.7",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/parser": "^8.58.0",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.0.0",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"jest": "^30.3.0",
"jsdom": "^29.0.1",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.8",
"postcss-import": "^16.1.1",
"postcss-loader": "^8.2.1",
"postcss-mixins": "^12.1.2",
"postcss-preset-env": "^11.2.0",
"raw-loader": "^4.0.2",
"react-compiler-webpack": "^1.0.0",
"source-map-loader": "^5.0.0",
"terser-webpack-plugin": "^5.4.0",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"browserslist": [
"Chrome >= 120"
]
}