-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
88 lines (88 loc) · 2.79 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": "vue3",
"description": "A Vue.js project together with RxDB",
"version": "1.0.0",
"author": "pubkey",
"private": true,
"scripts": {
"preinstall": "(cd ../../ && npx [email protected] pack ../../ --filename ./examples/vue/rxdb-local.tgz)",
"start": "concurrently \"npm run server\" \"npm run dev\"",
"server": "pouchdb-server --host 0.0.0.0 -p 10101 -m -d /tmp/pouchdb-server/ -n true",
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:serve": "ws -p 8888 -d dist/",
"lint": "vue-cli-service lint",
"test:run": "testcafe chromium -e test/ --hostname localhost --selector-timeout 30000",
"test": "concurrently \"npm run server\" \"npm run build:serve\" \"npm run test:run\" --kill-others --success first"
},
"//": "NOTICE: For the Github CI we use the local RxDB build (rxdb-local.tgz). In your app should just install 'rxdb' from npm instead",
"dependencies": {
"rxdb": "file:rxdb-local.tgz",
"pouchdb-server": "4.2.0",
"random-int": "3.0.0",
"register-service-worker": "1.7.2",
"rxjs": "7.8.1",
"vue": "3.5.13",
"vue-router": "4.5.0"
},
"devDependencies": {
"@types/node": "22.10.2",
"@types/pouchdb-adapter-http": "6.1.6",
"@types/pouchdb-adapter-idb": "6.1.7",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vue/cli-plugin-eslint": "5.0.8",
"@vue/cli-plugin-pwa": "5.0.8",
"@vue/cli-plugin-typescript": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/compiler-sfc": "3.5.13",
"@vue/eslint-config-typescript": "13.0.0",
"async-test-util": "2.5.0",
"concurrently": "9.1.0",
"copy-webpack-plugin": "12.0.2",
"eslint": "8.57.1",
"eslint-plugin-vue": "9.32.0",
"local-web-server": "5.4.0",
"node-sass": "9.0.0",
"sass-loader": "16.0.4",
"testcafe": "3.7.0",
"typescript": "5.6.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"parser": "@typescript-eslint/parser"
},
"rules": {
"semi": [
"error",
"always"
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"no-prototype-builtins": "off",
"no-useless-escape": "off",
"vue/multi-word-component-names": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-types": "off"
}
}
}