-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "energe-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tslint -c tslint.json -p tsconfig.json",
"export": "next build && next export"
},
"dependencies": {
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@types/styled-components": "^4.1.19",
"dayjs": "^1.8.16",
"dotenv": "^8.1.0",
"i18next": "^19.0.1",
"material-table": "^1.53.0",
"next": "9.3.2",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-i18next": "^11.2.5",
"react-virtualized": "^9.21.1",
"recharts": "^1.8.5",
"styled-components": "^4.4.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.7.11",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.3",
"@types/recharts": "^1.8.2",
"@visuallylab/tslint-config-frontend": "^1.0.13",
"babel-plugin-styled-components": "^1.10.6",
"dotenv-webpack": "^1.7.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"next-images": "^1.3.0",
"prettier": "^1.18.2",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "all"
}
}