-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.09 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.09 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
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
{
"name": "events-timeline",
"version": "0.0.1-a",
"private": true,
"description": "A single page application with the single purpose of showing Tron Blockchain events in a timeline.",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage --collectCoverage=true --watchAll=false",
"test:staged": "cross-env CI=true react-scripts test --coverage --watchAll=false --env=jsdom --findRelatedTests",
"test:update-snapshots": "react-scripts test --updateSnapshot",
"eject": "react-scripts eject",
"lint": "tslint -p tsconfig.json './{src,tests}/**/*.ts'"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!src/serviceWorker.*"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TronWallet/events-timeline.git"
},
"keywords": [
"react",
"devops",
"assessment",
"spa"
],
"author": "Vinicius Niche Correa (vinicius@getty.io)",
"bugs": {
"url": "https://github.com/TronWallet/events-timeline/issues"
},
"homepage": "https://github.com/TronWallet/events-timeline#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn lint",
"yarn test:staged",
"git add"
]
},
"dependencies": {
"@types/jest": "24.0.14",
"@types/node": "12.0.8",
"@types/react": "16.8.20",
"@types/react-dom": "16.8.4",
"@types/react-router-dom": "^4.3.4",
"@types/styled-components": "^4.1.16",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"styled-components": "^4.3.1",
"typescript": "3.5.2"
},
"devDependencies": {
"tslint": "^5.17.0",
"tslint-react": "^4.0.0"
}
}