forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.51 KB
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
{
"name": "rxdb-example-vuejs",
"description": "A Vue.js project together with RxDB",
"version": "1.0.0",
"author": "pubkey",
"private": true,
"scripts": {
"lint": "eslint src test",
"start": "concurrently \"npm run server\" \"npm run dev\"",
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot",
"server": "pouchdb-server --host 0.0.0.0 -p 10101 -m -d /tmp/pouchdb-server/ -n true",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"postbuild": "cp src/index.html ./dist/index.html && cp test/multitab.html ./dist/multitab.html",
"build:serve": "ws -p 8888 -d dist/",
"test:run": "testcafe chromium test/",
"test": "concurrently \"npm run build:serve \" \"npm run test:run\" --kill-others --success first"
},
"dependencies": {
"concurrently": "3.5.0",
"pouchdb-server": "2.3.7",
"pouchdb-adapter-http": "6.3.4",
"pouchdb-adapter-idb": "6.3.4",
"random-int": "1.0.0",
"vue": "2.4.2"
},
"devDependencies": {
"async-test-util": "1.2.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"cross-env": "5.0.5",
"css-loader": "0.28.7",
"eslint": "4.6.1",
"file-loader": "0.11.2",
"local-web-server": "2.2.4",
"testcafe": "0.17.2",
"vue-loader": "13.0.4",
"vue-template-compiler": "2.4.2",
"webpack": "3.5.6",
"webpack-dev-server": "2.7.1"
}
}