-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
94 lines (94 loc) · 2.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "coincharts",
"version": "2.3.0",
"description": "Cryptocurrency Price Chart (GDAX)",
"license": "MIT",
"homepage": "https://coincharts.now.sh/",
"repository": {
"type": "git",
"url": "https://github.com/tohjustin/coincharts.git"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"check": "npm run lint && npm run prettier",
"lint": "eslint './src/**/*.js'",
"lint:fix": " eslint --fix './src/**/*.js'",
"prettier": "prettier --check './src/**/*.js'",
"prettier:fix": "prettier --write './src/**/*.js'",
"script:deploy": "scripts/deploy.sh",
"script:downloadPriceData": "scripts/downloadPriceData.sh ./public/priceData",
"test": "cross-env TZ=America/Vancouver react-scripts test",
"test:ci": "cross-env CI=true npm run test -- --coverage",
"test:debug": "cross-env TZ=America/Vancouver react-scripts --inspect-brk test --no-cache --runInBand --watchAll"
},
"husky": {
"hooks": {
"pre-commit": "npm run check"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"axios": "0.19.0",
"currency-formatter": "1.5.5",
"d3-array": "2.4.0",
"d3-ease": "1.0.6",
"d3-interpolate-path": "2.1.1",
"d3-scale": "3.2.1",
"d3-selection": "1.4.1",
"d3-shape": "1.3.7",
"d3-time-format": "2.2.2",
"d3-transition": "1.3.2",
"lodash.get": "4.4.2",
"lodash.isequal": "4.5.0",
"prop-types": "15.7.2",
"raven-js": "3.27.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-ga": "2.7.0",
"react-helmet": "5.2.1",
"react-redux": "7.1.3",
"react-responsive": "8.0.1",
"react-scripts": "3.3.0",
"redux": "4.0.4",
"redux-saga": "1.1.3",
"reselect": "4.0.0",
"styled-components": "4.4.1"
},
"devDependencies": {
"@sentry/cli": "1.49.0",
"@testing-library/dom": "6.11.0",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.4.0",
"@testing-library/user-event": "7.2.1",
"check-types": "11.0.0",
"codecov": "3.6.5",
"cross-env": "6.0.3",
"eslint": "6.7.2",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"husky": "3.1.0",
"now": "16.7.0",
"prettier": "1.19.1"
},
"jest": {
"collectCoverageFrom": [
"!<rootDir>/node_modules/",
"!src/serviceWorker.js",
"!src/index.js",
"src/**/*.js"
]
},
"prettier": {
"printWidth": 120,
"trailingComma": "all"
}
}