-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 922 Bytes
/
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
{
"name": "drug-protein-interaction",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@geist-ui/react": "^2.1.5",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-tracking": "^8.1.0",
"serverless-mysql": "^1.5.4"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/react": "17.0.8",
"@types/react-tracking": "^8.1.0",
"consola": "^2.15.3",
"file-loader": "^6.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.{js|jsx|tsx|ts|gql|css|md|json}": [
"prettier --write",
"git add"
],
"*.{js|jsx|tsx|ts}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}