-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "personal-website",
"description": "Kevin To's person website",
"version": "2.0.0",
"author": "Kevin To <qkevinto@gmail.com>",
"dependencies": {
"date-fns": "^2.29.3",
"ellipsize": "^0.5.1",
"eslint": "^8.32.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"gatsby": "^5.16.1",
"gatsby-link": "^5.16.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-plugin-offline": "^6.16.0",
"gatsby-plugin-sass": "^6.16.0",
"gh-pages": "^5.0.0",
"sass": "^1.77.0",
"stylelint": "^14.16.1",
"webpack": "^5.75.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"overrides": {
"lmdb": "^3.5.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public",
"clean": "gatsby clean"
}
}