-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "kelvinlouis-dev",
"description": "Personal website of Kelvin Louis",
"version": "1.0.0",
"author": "Kelvin Louis <[email protected]>",
"dependencies": {
"@types/node": "^8.0.7",
"@types/react": "15.0.21",
"@types/react-dom": "0.14.23",
"classnames": "^2.2.6",
"gatsby": "^1.9.119",
"gatsby-link": "^1.6.28",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-plugin-typescript": "^1.4.10",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-helmet": "^5.2.1"
},
"keywords": [
"gatsby",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "npm run lint:ts",
"lint:ts": "eslint -c ./.eslintrc.js --ext .ts,.tsx --ignore-pattern **/*.d.ts ./src",
"format": "prettier --parser typescript --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.ts*\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"@types/react-helmet": "^5.0.9",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.8.2"
}
}