-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
83
84
85
86
87
{
"name": "p2folio",
"version": "0.3.1",
"private": false,
"author": "Vojtech Uhlir <uhlirvoj1@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/WojtylaCZ/p2folio"
},
"license": "GPL-3.0",
"homepage": "https://p2folio.cz/",
"dependencies": {
"@material-ui/core": "4.5.1",
"@material-ui/icons": "4.5.1",
"@types/dinero.js": "1.4.1",
"@types/jest": "24.0.18",
"@types/material-ui": "0.21.7",
"@types/moment": "2.13.0",
"@types/node": "12.7.5",
"@types/react": "16.9.2",
"@types/react-dom": "16.9.0",
"dinero.js": "1.6.0",
"gh-pages": "2.1.1",
"i18next": "19.8.4",
"i18next-browser-languagedetector": "6.0.1",
"i18next-http-backend": "1.0.21",
"moment": "2.24.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-ga": "2.7.0",
"react-i18next": "11.7.3",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.4",
"typescript": "3.9.7",
"xlsx": "0.15.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"prettier": "prettier --config ./prettierrc.json --write \"./**/*.{js,ts,tsx,css,json,md}\" --ignore-path \"./.gitignore\"",
"lint": "tslint --fix --project .",
"format": "yarn prettier && yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix --project .",
"git add"
],
"*.{js,ts,tsx,css,json,md}": [
"prettier --config ./prettierrc.json --write \"./**/*.{js,ts,tsx,css,json,md}\" --ignore-path \"./.gitignore\"",
"git add"
]
},
"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"
]
},
"devDependencies": {
"@types/react-router-dom": "5.1.6",
"husky": "3.0.7",
"lint-staged": "9.4.0",
"prettier": "2.2.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.1.0"
}
}