forked from pubkey/rxdb-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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-quickstart",
"version": "0.0.0",
"description": "A simple local-first p2p todo app to learn about RxDB",
"private": true,
"scripts": {
"dev": "webpack serve",
"build": "rimraf -rf ./docs && webpack --mode=production",
"disc": "cross-env NODE_ENV=disc webpack --config ./webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pubkey/rxdb-quickstart.git"
},
"keywords": [
"rxdb"
],
"author": "pubkey",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pubkey/rxdb-quickstart/issues"
},
"homepage": "https://github.com/pubkey/rxdb-quickstart#readme",
"dependencies": {
"rxdb": "15.30.2",
"rxjs": "7.8.1",
"todomvc-app-css": "2.4.3"
},
"devDependencies": {
"@types/node": "20.14.14",
"@types/webpack": "5.28.5",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"declaration-bundler-webpack-plugin": "1.0.3",
"html-webpack-plugin": "5.6.0",
"mini-css-extract-plugin": "2.9.0",
"process": "0.11.10",
"rimraf": "6.0.1",
"ts-loader": "9.5.1",
"typescript": "5.5.4",
"webpack": "5.93.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
}
}