-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.93 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.93 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
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
{
"name": "livestate",
"version": "1.0.0",
"description": "A real time state management library that allows for state to subscribe and update based on changes from a specific portion of a database.",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js & NODE_ENV=development webpack serve --open",
"build": "NODE_ENV=production webpack",
"watch": "webpack --watch",
"dev": "NODE_ENV=development webpack serve --open"
},
"nodemonConfig": {
"ignore": [
"build",
"client",
"__tests__"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/seadubs/nerm-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/seadubs/nerm-template/issues"
},
"homepage": "https://github.com/seadubs/nerm-template#readme",
"dependencies": {
"@livestatedb/client": "^1.0.0",
"express": "^4.18.1",
"fastify-sse": "^1.0.0",
"fastify-sse-v2": "^2.2.1",
"mongodb": "^4.10.0",
"mongoose": "^6.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-redux": "^8.0.2",
"react-uuid": "^1.0.3",
"socket.io-client": "^4.5.3"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@fastify/cors": "^8.1.0",
"@fastify/redis": "^6.0.1",
"@livestatedb/server": "^1.0.1",
"babel-jest": "^29.2.1",
"babel-loader": "^8.2.5",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"fastify": "^4.8.1",
"html-webpack-plugin": "^5.5.0",
"ioredis": "^5.2.3",
"jest": "^29.2.1",
"nodemon": "^2.0.19",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"socket.io": "^4.5.3",
"spdy": "^4.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"keywords": []
}