-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 998 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
{
"name": "nusadata",
"private": true,
"scripts": {
"build": "gridsome build",
"develop": "gridsome develop",
"explore": "gridsome explore",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"lint": "eslint --ext .js,.vue src --fix"
},
"dependencies": {
"@gridsome/plugin-google-analytics": "^0.1.1",
"axios": "^0.19.2",
"csv": "^5.3.2",
"d3": "^5.16.0",
"gh-pages": "^3.0.0",
"gridsome": "^0.7.0",
"gridsome-plugin-tailwindcss": "^2.2.48",
"tippy.js": "^6.2.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"vue-eslint-parser": "^7.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(js|vue)": [
"npm run lint"
]
}
}