-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.16 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
{
"name": "forex-web-app",
"version": "1.0.0",
"private": true,
"homepage": "https://leonardodino.github.io/forex-web-app",
"author": "Leonardo Dino",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leonardodino/forex-web-app.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"type-check": "tsc --isolatedModules false",
"format": "prettier --write '**/*.{js,json,css,md,ts,tsx}'",
"lint": "prettier --check '**/*.{js,json,css,md,ts,tsx}'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"deploy": "yarn -s build && esr scripts/deploy.ts"
},
"dependencies": {
"dinero.js": "^1.5.0",
"minireset.css": "^0.0.4",
"react": "16.9.0-alpha.0",
"react-dom": "16.9.0-alpha.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"redux-actions": "^2.6.4",
"rifm": "^0.7.0",
"styled-components": "^4.1.3",
"use-interval": "^1.1.0"
},
"devDependencies": {
"@types/dinero.js": "^1.4.0",
"@types/gh-pages": "^3.2.0",
"@types/history": "^4.7.2",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"@types/node-fetch": "^2.3.2",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-router": "^4.4.5",
"@types/react-router-dom": "^4.3.2",
"@types/react-test-renderer": "^16.8.1",
"@types/redux-actions": "^2.6.0",
"@types/styled-components": "4.1.8",
"esbuild": "^0.14.9",
"esbuild-runner": "^2.2.1",
"gh-pages": "^3.2.3",
"husky": "^1.3.1",
"jest-dom": "^3.1.3",
"lint-staged": "^12.1.4",
"node-fetch": "^2.3.0",
"prettier": "1.16.4",
"react-scripts": "3.0.0",
"react-test-renderer": "16.9.0-alpha.0",
"react-testing-library": "^6.0.0",
"typescript": "^3.4.4",
"utility-types": "^3.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}