-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "cryptowatch-2.0",
"version": "0.1.0",
"description": "Progressive Web Application displaying Cryptocurrency-to-real-currency exchange rate quotes and historical data graphs. The app was built with React, API calls, web sockets, and D3.js.",
"homepage": "http://selva-oscura.github.io/cryptowatch-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/selva-oscura/cryptowatch-2.0.git"
},
"keywords": [
"React",
"d3",
"PWA",
"axios",
"socket.io"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/selva-oscura/cryptowatch-2.0/issues"
},
"private": true,
"dependencies": {
"axios": "^0.18.0",
"d3": "^5.4.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "^1.1.4",
"socket.io": "^2.1.1"
},
"devDependencies": {
"gh-pages": "^1.2.0",
"husky": "^0.14.3",
"prettier": "^1.13.5",
"pretty-quick": "^1.6.0"
},
"scripts": {
"start": "yarn run lint && react-scripts start",
"build": "react-scripts build",
"lint": "prettier --single-quote --trailing-comma es5 --write src/*.js src/components/*.js src/components/*/*.js",
"precommit": "pretty-quick --staged",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build"
}
}