This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
{
"name": "gatsby-plugin-valine",
"version": "1.0.2",
"description": "Provides an out-of-the-box component for Valine commenting system",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Wizcas Chen",
"repository": "https://github.com/wizcas/gatsby-plugin-valine",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/wizcas/gatsby-plugin-valine/issues"
},
"license": "MIT",
"private": false,
"keywords": [
"gatsby",
"gatsby-plugin",
"comment",
"valine",
"blog-comment"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"lint": "eslint src/**/*.{ts,tsx} --color",
"build": "yarn cleanup && tsc",
"build2": "yarn cleanup && yarn build:types && yarn build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"cleanup": "rm -rf dist",
"prepublish": "yarn build"
},
"dependencies": {
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"valine": "^1.4.14"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@types/lodash": "^4.14.152",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-preset-gatsby-package": "^0.4.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"tslib": "^1.13.0",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}