-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "contratospr",
"scripts": {
"dev": "node src/server.js",
"build": "next build src",
"start": "NODE_ENV=production node src/server.js",
"lint": "eslint src",
"heroku-postbuild": "npm run build"
},
"dependencies": {
"@types/react-select": "^3.1.2",
"chart.js": "^2.9.4",
"date-fns": "^2.16.1",
"express": "^4.17.3",
"isomorphic-unfetch": "^3.1.0",
"moment": "^2.29.4",
"next": "^13.2.3",
"nprogress": "^0.2.0",
"postcss": "^8.2.13",
"postcss-import": "^13.0.0",
"query-string": "^6.13.8",
"react": "^17.0.1",
"react-chartjs-2": "^2.11.1",
"react-dom": "^17.0.1",
"react-select": "^3.2.0"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-jsx": "^2.2.8",
"autoprefixer": "^10.2.3",
"babel-eslint": "^10.1.0",
"cssnano": "^5.1.15",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}