-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
50
51
{
"name": "danichain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"start": "npm-run-all --parallel start-server start-client",
"start-server": "node index.js",
"start-client": "parcel client/src/index.html --out-dir client/dist",
"dev": "npm-run-all --parallel dev-server dev-client",
"dev-server": "nodemon index.js",
"dev-client": "parcel client/src/index.html --out-dir client/dist",
"dev-peer": "cross-env GENERATE_PEER_PORT=true nodemon index.js",
"clean": "rm -rf .cache client/dist"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"cross-env": "^7.0.3",
"jest": "^23.6.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"babel-core": "^7.0.0-0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"body-parser": "^1.20.2",
"elliptic": "^6.5.4",
"express": "^4.18.2",
"hex-to-binary": "^1.0.1",
"history": "^4.7.2",
"parcel-bundler": "^1.12.5",
"pubnub": "^7.4.5",
"react": "^18.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.2.0",
"react-router-dom": "^4.3.1",
"request": "^2.88.2",
"uuid": "^9.0.1"
}
}