-
-
Notifications
You must be signed in to change notification settings - Fork 706
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.26 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
{
"name": "anthias",
"version": "1.0.0",
"scripts": {
"build:js": "bun build ./static/src/index.tsx --outfile=./static/dist/js/anthias.js --target=browser --production --define process.env.ENVIRONMENT='\"production\"'",
"build:css": "bunx sass static/sass/anthias.scss static/dist/css/anthias.css --style=compressed --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
"build": "bun run build:js && bun run build:css",
"dev:js": "bun build ./static/src/index.tsx --outfile=./static/dist/js/anthias.js --target=browser --sourcemap=linked --watch --define process.env.NODE_ENV='\"development\"' --define process.env.ENVIRONMENT='\"development\"'",
"dev:css": "bunx sass static/sass/anthias.scss static/dist/css/anthias.css --watch --quiet-deps --silence-deprecation=import,global-builtin,color-functions,if-function",
"dev": "bash -c 'bun run dev:js & js=$!; bun run dev:css & css=$!; trap \"kill $js $css 2>/dev/null\" EXIT INT TERM; wait -n; exit $?'",
"lint:check": "eslint static/src",
"lint:fix": "eslint static/src --fix",
"format:check": "prettier --check static/src",
"format:fix": "prettier --write static/src",
"test": "bun test"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@reduxjs/toolkit": "^2.11.2",
"bootstrap": "^5.3.8",
"jquery": "^4.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.6.0",
"react-redux": "^9.1.0",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"sweetalert2": "^11.26.23"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.6.2",
"@happy-dom/global-registrator": "^20.9.0",
"@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/bootstrap": "^5.2.10",
"@types/jquery": "^4.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"classnames": "^2.5.1",
"eslint": "^10.1.0",
"msw": "^2.14.2",
"prettier": "3.8.3",
"sass": "^1.98.0",
"typescript": "^6.0.3"
}
}