forked from vzhou842/victorzhou.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.03 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
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
{
"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",
"flow": "flow",
"format": "prettier --write --ignore-path .gitignore '**/**.js'",
"format-check": "prettier --list-different --ignore-path .gitignore '**/**.js'",
"lint:fix": "eslint --fix --cache --ext .js,.jsx --ignore-pattern '/public/' --ignore-pattern '/public-live/' .",
"lint:js": "eslint --cache --ext .js,.jsx --ignore-pattern '/public/' --ignore-pattern '/public-live/' .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"npm run lint:js\" \"npm run lint:scss\" \"npm run flow\" \"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"
},
"repository": "https://github.com/vzhou842/victorzhou.com",
"author": "Victor Zhou <vzhou842@gmail.com>",
"license": "MIT",
"keywords": [],
"dependencies": {
"@loadable/component": "^5.14.1",
"bluebird": "^3.7.2",
"classnames": "^2.2.6",
"codecov": "^3.8.0",
"express": "^4.17.1",
"gatsby": "^2.24.91",
"gatsby-link": "^2.4.16",
"gatsby-plugin-catch-links": "^2.3.15",
"gatsby-plugin-feed": "^2.5.20",
"gatsby-plugin-flow": "^1.3.13",
"gatsby-plugin-google-gtag": "^1.2.1",
"gatsby-plugin-manifest": "^2.4.37",
"gatsby-plugin-offline": "^3.2.38",
"gatsby-plugin-optimize-svgs": "^1.0.5",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-sass": "^2.3.22",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-sitemap": "^2.4.17",
"gatsby-remark-autolink-headers": "^2.3.16",
"gatsby-remark-code-headers": "^1.1.0",
"gatsby-remark-copy-linked-files": "^2.3.19",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-figure-caption": "^2.0.0",
"gatsby-remark-images": "^3.3.40",
"gatsby-remark-katex": "^3.3.14",
"gatsby-remark-prismjs": "^3.5.16",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-remark-responsive-iframe": "^2.4.17",
"gatsby-remark-smartypants": "^2.3.13",
"gatsby-source-filesystem": "^2.3.37",
"gatsby-transformer-remark": "^2.8.47",
"gatsby-transformer-sharp": "^2.5.20",
"katex": "^0.10.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"normalize-scss": "^7.0.1",
"prismjs": "^1.22.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-headroom": "^3.0.0",
"react-helmet": "^5.2.1",
"react-share": "^4.3.1",
"react-toggle": "^4.1.1",
"rehype-react": "^5.0.1",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-flow-strip-types": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"autoprefixer": "^9.8.6",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"browserslist": "^4.14.6",
"concurrently": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-watch": "^6.0.1",
"flow-bin": "^0.107.0",
"gh-pages": "^2.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"lost": "^8.3.1",
"postcss-pxtorem": "^4.0.1",
"react-test-renderer": "^16.14.0",
"rimraf": "^2.7.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.18.0"
}
}