-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
34 lines (34 loc) · 1.2 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
{
"name": "svelte-app",
"version": "1.0.0",
"private": true,
"scripts": {
"preinstall": "(cd ../../ && npx [email protected] pack ../../ --filename ./examples/svelte/rxdb-local.tgz)",
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear --port 5000",
"test:e2e": "testcafe chromium -e test/ --hostname localhost --selector-timeout 8000",
"test": "npm run build && concurrently \"npm run start\" \"npm run test:e2e\" --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",
"devDependencies": {
"rxdb": "file:rxdb-local.tgz",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"async-test-util": "2.5.0",
"concurrently": "9.1.2",
"rollup": "4.34.6",
"rollup-plugin-css-only": "4.5.2",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-svelte": "7.2.2",
"rollup-plugin-terser": "7.0.2",
"rxjs": "7.8.1",
"svelte": "4.2.19",
"testcafe": "3.7.1"
},
"dependencies": {
"@rollup/plugin-json": "6.1.0",
"sirv-cli": "3.0.0"
}
}