-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.76 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.76 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
{
"name": "coursework",
"version": "1.0.0",
"description": "Course work in NaUKMA",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest --watchAll",
"start": "npm run build-client & node index.js",
"dev": "npm run dev-client & npm run start-redis && cross-env ENV='development' nodemon index.js",
"dev-peer": "cross-env GENERATE_PEER_PORT='true' ENV='development' nodemon index.js",
"start-redis": "redis-server --daemonize yes",
"build-client": "npm run clean && parcel build client/src/index.html --out-dir client/build",
"dev-client": "npm run clean && parcel client/src/index.html --out-dir client/build",
"clean": "rm -rf .cache client/build"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrewFrost/CryptoRepoBlock.git"
},
"author": "Moroz Andrii",
"license": "ISC",
"bugs": {
"url": "https://github.com/DrewFrost/CryptoRepoBlock/issues"
},
"homepage": "https://github.com/DrewFrost/CryptoRepoBlock#readme",
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"body-parser": "^1.19.0",
"elliptic": "^6.4.1",
"express": "^4.16.4",
"hex-to-binary": "^1.0.1",
"history": "^4.7.2",
"parcel-bundler": "^1.12.3",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.8",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"redis": "^2.8.0",
"request": "^2.88.0",
"uuid": "^3.3.2"
}
}