-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.89 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
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
{
"name": "gaver",
"version": "1.0.0",
"private": true,
"license": "GPL-3.0",
"scripts": {
"dev": "vite",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "tsc && vite build",
"build:backend": "dotnet build",
"serve": "vite preview",
"test:frontend": "jest",
"test:backend": "foreach -g 'test/**Tests/*.csproj' -x 'cd #{dir} && dotnet test' --no-C",
"test": "run-p test:frontend test:backend",
"test:watch": "npm test && chokidar '**/*.cs' -c 'npm test'",
"clean": "del-cli src/**/obj/ src/**/bin/ test/**/obj/ test/**/bin/ node_modules/.cache/ src/**/wwwroot",
"clean:www": "del-cli src/Gaver.Web/wwwroot/",
"start:frontend": "vite",
"start:backend": "cd src/Gaver.Web && cross-env ASPNETCORE_ENVIRONMENT=Development dotnet watch run",
"start": "run-p start:frontend start:backend",
"watch": "cd src/Gaver.Web && cross-env ASPNETCORE_ENVIRONMENT=Development dotnet watch run",
"cloc": "cloc --exclude-dir=node_modules,typings,wwwroot,bin,obj --exclude-lang=JSON ."
},
"type": "module",
"author": "Geir Sagberg",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@microsoft/signalr": "^8.0.0",
"@mui/material": "^5.15.14",
"@types/toastr": "^2.1.43",
"auth0-js": "^9.24.1",
"canvas": "^2.11.2",
"chroma-js": "^2.4.2",
"classnames": "^2.5.1",
"color": "^4.2.3",
"delaunator": "^5.0.1",
"isomorphic-fetch": "^3.0.0",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.17.21",
"luxon": "^3.4.4",
"normalizr": "^3.6.2",
"nprogress": "^0.2.0",
"overmind-react": "^29.0.5",
"page": "^1.11.6",
"pubsub-js": "^1.9.4",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"simplebar-react": "^3.2.4",
"toastr": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@types/auth0-js": "^9.21.5",
"@types/chroma-js": "^2.4.4",
"@types/color": "^3.0.6",
"@types/jest": "^29.5.12",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.30",
"@types/nprogress": "^0.2.3",
"@types/page": "^1.11.9",
"@types/pubsub-js": "^1.8.6",
"@types/react": "^18.2.73",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.2.23",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"cloc": "^2.11.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"foreach-cli": "^1.8.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-custom-properties": "^13.3.6",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.0.1",
"postcss-simple-vars": "^7.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"vite": "^5.2.6"
}
}