-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "cra-template",
"version": "1.0.0",
"main": "src/index.tsx",
"scripts": {
"build": "react-scripts build",
"start": "react-scripts start",
"test": "react-scripts test --colors",
"coverage": "react-scripts test --coverage",
"precommit": "lint-staged"
},
"lint-staged": {
"src/{**/*,*}/*.{ts,tsx}": [
"cross-env CI=true react-scripts test --colors --findRelatedTests"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts?(x)",
"!**/*.d.ts?(x)",
"!**/*.stories.ts?(x)",
"!**/__*__/**"
]
},
"browserslist": {
"production": [
"chrome > 60",
"firefox > 60",
"safari > 12"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@terra-money/terra.js": "^2.0.1",
"@terra-money/wallet-provider": "^2.3.0",
"bignumber.js": "^9.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"cross-env": "^7.0.3",
"lint-staged": "^11.1.2",
"react-scripts": "4.0.3",
"typescript": "^4.3.5"
}
}