-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.17 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.17 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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"version": "1.0.0",
"name": "victorzhou.com",
"description": "",
"main": "n/a",
"scripts": {
"develop": "npm run clean && gatsby develop",
"build": "npm run clean && gatsby build",
"clean": "rimraf .cache public",
"deploy": "./server/scripts/deploy.sh",
"format": "prettier --write --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"format-check": "prettier --list-different --ignore-path .gitignore '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --ignore-pattern '/public/' --ignore-pattern '/public-live/' .",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --ignore-pattern '/public/' --ignore-pattern '/public-live/' .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:scss\" \"npm run format-check\"",
"start-server": "node server/server.js",
"test": "jest --config ./tests/jest-config.js",
"test:coverage": "jest --coverage --config ./tests/jest-config.js",
"test:watch": "jest --watch --config ./tests/jest-config.js",
"typecheck": "tsc --noEmit"
},
"repository": "https://github.com/vzhou842/victorzhou.com",
"author": "Victor Zhou <vzhou842@gmail.com>",
"license": "MIT",
"keywords": [],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@loadable/component": "^5.16.3",
"ajv": "^8.17.1",
"bluebird": "^3.7.2",
"classnames": "^2.5.1",
"express": "^5.1.0",
"gatsby": "^5.13.0",
"gatsby-link": "^5.13.0",
"gatsby-plugin-catch-links": "^5.13.0",
"gatsby-plugin-feed": "^5.13.0",
"gatsby-plugin-google-gtag": "^5.13.0",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-offline": "^6.13.0",
"gatsby-plugin-react-helmet": "^6.13.0",
"gatsby-plugin-sass": "^6.13.0",
"gatsby-plugin-sharp": "^5.13.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gatsby-remark-autolink-headers": "^6.13.0",
"gatsby-remark-copy-linked-files": "^6.13.0",
"gatsby-remark-images": "^7.13.0",
"gatsby-remark-katex": "^7.13.0",
"gatsby-remark-prismjs": "^7.13.0",
"gatsby-remark-responsive-iframe": "^6.13.0",
"gatsby-remark-smartypants": "^6.13.0",
"gatsby-source-filesystem": "^5.13.0",
"gatsby-transformer-remark": "^6.13.0",
"gatsby-transformer-sharp": "^5.13.0",
"github-slugger": "^2.0.0",
"katex": "^0.13.24",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"normalize-scss": "^8.0.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-headroom": "^3.2.1",
"react-helmet": "^6.1.0",
"react-share": "^5.1.0",
"react-toggle": "^4.1.3",
"rehype-react": "^5.0.1",
"sass": "^1.69.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"@babel/preset-typescript": "^7.23.0",
"@types/jest": "^30.0.0",
"@types/loadable__component": "^5.13.10",
"@types/lodash": "^4.17.21",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-headroom": "^3.2.3",
"@types/react-helmet": "^6.1.0",
"@types/react-test-renderer": "^19.1.0",
"@types/react-toggle": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"browserslist": "^4.22.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lost": "^9.0.2",
"postcss": "^8.4.32",
"postcss-pxtorem": "^6.0.0",
"prettier": "^3.1.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"stylelint": "^16.0.2",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-scss": "^6.0.0",
"typescript": "^5.3.0"
}
}