-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
{
"name": "sf-chain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev-test": "nodemon dev-test",
"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/dist",
"dev-client": "npm run clean && parcel client/src/index.html --out-dir client/dist",
"clean": "rm -rf .cache client/dist"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"jest": "^25.5.4",
"nodemon": "^2.0.4",
"prettier": "2.1.2"
},
"dependencies": {
"@types/react": "^16.9.35",
"axios": "^0.19.2",
"babel-core": "^6.26.3",
"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.19.0",
"bootstrap": "^4.5.2",
"cross-env": "^5.2.1",
"crypto-js": "^3.3.0",
"dotenv": "^8.2.0",
"elliptic": "^6.5.3",
"express": "^4.17.1",
"got": "^10.7.0",
"history": "^4.10.1",
"ip": "^1.1.5",
"localStorage": "^1.0.4",
"mongoose": "^5.9.17",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-modal": "^3.11.2",
"react-navigation-drawer": "^2.4.13",
"react-router-dom": "^5.2.0",
"react-vertical-timeline-component": "^3.0.2",
"redis": "^2.8.0",
"request": "^2.88.2",
"uuid": "^3.4.0"
}
}