This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "rxdb-example-react",
"version": "3.0.0",
"dependencies": {
"async-test-util": "1.7.3",
"babel-polyfill": "6.26.0",
"concurrently": "6.5.1",
"pouchdb-adapter-http": "7.2.2",
"pouchdb-adapter-idb": "7.2.2",
"pouchdb-replication": "7.2.2",
"pouchdb-server": "4.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rxdb": "file:rxdb-local.tgz",
"rxjs": "7.4.0"
},
"devDependencies": {
"react-scripts": "4.0.3",
"rimraf": "3.0.2",
"testcafe": "1.17.1",
"local-web-server": "5.1.1"
},
"scripts": {
"preinstall": "npm run preinstall:rxdb && npm run preinstall:versions",
"preinstall:rxdb": "(cd ../../ && npx [email protected] pack ../../ --filename ./examples/react/rxdb-local.tgz)",
"preinstall:versions": "node ./scripts/ensure-equal-versions.js",
"dev": "PORT=8888 react-scripts start",
"build": "react-scripts build",
"build:serve": "ws -p 8888 -d build/",
"eject": "react-scripts eject",
"start": "concurrently \"npm run server\" \"npm run dev\"",
"server": "pouchdb-server --host 0.0.0.0 -p 10102 -m -d /tmp/pouchdb-server/ -n true",
"test:react": "react-scripts test --env=jsdom",
"test": "testcafe chrome -e test/ --hostname localhost --selector-timeout 30000",
"test:build": "concurrently \"npm run build:serve\" \"npm run test\" --kill-others --success first"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}