-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.58 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
{
"private": true,
"name": "ateliere-live-gui",
"version": "1.0.0",
"description": "",
"scripts": {
"prepare": "husky install",
"test": "jest --passWithNoTests",
"pretty": "prettier --check --ignore-unknown .",
"pretty:format": "prettier --write .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "next lint",
"dev": "./update_gui_version.sh && next dev",
"build": "next build",
"start": "next start",
"version:rc": "npm version prerelease --preid=rc",
"postversion": "git push && git push --tags",
"generate-types:ateliere-live": "bash -c 'source .env && curl -O -u $LIVE_CREDENTIALS -k \"$LIVE_URL/static/swagger_docs/swagger.json\"' && swagger-typescript-api -p swagger.json -o ./types -n ateliere-live.d.ts --no-client"
},
"license": "UNLICENSED",
"engines": {
"node": ">=18.15.0"
},
"dependencies": {
"@eyevinn/webrtc-player": "^0.11.2",
"@fastify/cors": "^8.2.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@mui/base": "^5.0.0-beta.2",
"@pieropatron/tinylogger": "^1.0.3",
"@sinclair/typebox": "^0.25.24",
"@tabler/icons": "^2.22.0",
"@tabler/icons-react": "^2.20.0",
"bcrypt": "^5.1.0",
"cron": "^2.3.1",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"fastify": "^4.28.1",
"lodash.get": "^4.4.2",
"mongodb": "^5.8.0",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"nodemon": "^3.1.7",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^1.13.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/bcrypt": "^5.0.0",
"@types/cron": "^2.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.16.7",
"@types/react": "18.2.6",
"@types/react-dom": "^18.2.4",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.33.0",
"eslint-config-next": "^13.4.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"postcss": "^8.4.31",
"prettier": "2.8.8",
"sass": "^1.62.1",
"swagger-typescript-api": "^12.0.4",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.0.5",
"typescript": "^5.0.4"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}