-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "@quack/quack",
"version": "2.3.1",
"description": "",
"main": "src/index.js",
"workspaces": [
"app"
],
"engines": {
"node": "22.x.x",
"npm": "10.x.x"
},
"scripts": {
"migrate": "migrate-mongo up",
"migrate:tests": "DATABASE_URL='mongodb://chat:chat@localhost:27017/tests?authSource=admin' npm run migrate",
"start": "migrate-mongo up && npm run -w=@quack/server start ",
"build": "npm run -w=@quack/app build",
"dev": "npm run -w=@quack/app dev",
"android:build": "npm run -w=@quack/app tauri android build",
"desktop:build": "npm run -w=@quack/app tauri build",
"lint": "FORCE_COLOR=true eslint --fix .",
"lint:ci": "eslint .",
"types": "npm run -w=@quack/app types"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/plugin-syntax-decorators": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@eslint/js": "^9.17.0",
"@types/qs": "^6.9.17",
"eslint": "^9.17.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "^7.37.3",
"globals": "15.14.0",
"migrate-mongo": "11.0.0",
"mongodb": "6.12.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"devDependencies": {
"nodemon": "3.1.9",
"npm-run-all": "4.1.5",
"run-p": "0.0.0"
}
}