forked from Elvistcb/project-report-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "project-report-renderer",
"description": "Renders project reports to static pages",
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/moment": "^2.13.0",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-table": "^7.0.22",
"@types/react-transition-group": "^4.4.0",
"@types/recharts": "^1.8.14",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"autoprefixer": "^9.8.6",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"next": "^9.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-table": "^7.5.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run check"
}
},
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"export": "next export",
"check": "run-s check:format check:lint check:compile",
"check:format": "prettier --write components lib pages types",
"check:lint": "eslint components lib pages types",
"check:compile": "tsc"
},
"dependencies": {
"@actions/core": "^1.2.4",
"classnames": "^2.2.6",
"moment": "^2.27.0",
"react-transition-group": "^4.4.1",
"recharts": "^1.8.5",
"tailwindcss": "^1.7.3"
}
}