-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.66 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
95
96
97
98
99
100
101
102
{
"name": "finder",
"version": "1.0.1",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"prettier": "prettier --write src/**/*.{js,ts,tsx,json,scss}"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@material-ui/core": "^4.12.3",
"@terra-money/log-finder": "^1.1.6",
"@terra-money/log-finder-ruleset": "^1.1.0",
"@terra-money/react-base-components": "^2.1.3",
"@terra-money/terra.js": "^3.1.0",
"@terra.kitchen/utils": "^1.0.7",
"@types/recoil": "^0.0.9",
"ace-builds": "^1.4.12",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"buffer": "^6.0.3",
"classnames": "^2.2.6",
"core-js": "^3.8.2",
"countries-list": "^2.6.1",
"date-fns": "^2.19.0",
"date-fns-tz": "^1.1.3",
"graphql": "^15.4.0",
"is-base64": "^1.1.0",
"keccak256": "^1.0.6",
"lodash": "^4.17.20",
"luxon": "^2.1.1",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-ace": "^9.2.1",
"react-app-polyfill": "^2",
"react-copy-to-clipboard": "^5.0.2",
"react-csv": "^2.2.2",
"react-dom": "^17.0.2",
"react-modal": "^3.12.1",
"react-query": "^3.21.0",
"react-router-dom": "^6.0.2",
"react-scripts": "^4",
"recoil": "^0.3.1",
"sass": "^1.32.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/is-base64": "^1.1.0",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.167",
"@types/luxon": "^2.0.7",
"@types/ramda": "^0.27.34",
"@types/react": "^17.0.11",
"@types/react-copy-to-clipboard": "^5",
"@types/react-csv": "^1.1.2",
"@types/react-dom": "^17.0.8",
"@types/react-modal": "^3.10.6",
"@types/react-router-dom": "^5.1.7",
"babel-loader": "8.1.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"source-map-explorer": "^2.5.2",
"typescript": "^4.1.3",
"webpack": "4.44.2"
}
}