-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.56 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.56 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
{
"name": "sortd-website",
"version": "2.3.0",
"description": "Website of Sortd",
"homepage": "http://web.sortd.io",
"repository": {
"type": "git",
"url": "https://github.com/sortd-io/sortd-website"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"dev": "rm -rf .cache && gatsby develop",
"gh-pages": "cp CNAME ./public/ && gh-pages -d public",
"lint": "npm run lint:js && npm run lint:style",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src --fix",
"lint:style": "stylelint \"site/**/*.less\" --syntax less",
"precommit": "npm run lint-staged",
"prettier": "prettier --write **/**",
"serve": "gatsby serve",
"site": "cross-env NODE_OPTIONS=--max-old-space-size=4096 npm run build && npm run gh-pages",
"start": "gatsby develop",
"test": "npm run lint"
},
"pre-commit": [
"precommit"
],
"lint-staged": {
"**/*.less": "stylelint --syntax less",
"**/*.{js,jsx,less}": [
"prettier --write",
"git add"
],
"**/*.{js,jsx}": "npm run lint-staged:js"
},
"dependencies": {
"antd": "latest",
"async-validator": "^3.0.3",
"axios": "^0.18.0",
"classnames": "^2.2.6",
"delegate": "^3.2.0",
"docsearch.js": "^2.6.3",
"gatsby": "^2.2.7",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-hotjar": "^1.0.1",
"gatsby-plugin-hotjar-tracking": "^1.0.0",
"gatsby-plugin-intercom": "^0.1.4",
"gatsby-plugin-intercom-spa": "^0.1.0",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-sitemap": "^2.1.0",
"himalaya": "^1.1.0",
"html5-device-mockups": "^3.2.1",
"lodash-decorators": "^6.0.0",
"lz-string": "^1.4.4",
"moment": "^2.24.0",
"node-fetch": "^2.5.0",
"prop-types": "^15.7.2",
"rc-drawer-menu": "^1.1.0",
"rc-queue-anim": "^1.3.1",
"rc-scroll-anim": "^2.0.2",
"rc-tween-one": "^2.2.3",
"react": "^16.4.2",
"react-copy-to-clipboard": "^5.0.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.4.2",
"react-github-button": "^0.1.11",
"react-intl": "^2.4.0",
"react-mailchimp-subscribe": "^2.1.0",
"react-media": "^1.9.2"
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/react-document-title": "^2.0.3",
"@types/react-intl": "^2.3.17",
"@umijs/fabric": "^1.1.3",
"core-js": "^2.6.5",
"cross-env": "^5.1.1",
"eslint": "^5.3.0",
"fs-extra": "^7.0.0",
"gatsby-plugin-antd": "^2.0.2",
"gatsby-plugin-catch-links": "^2.0.0",
"gatsby-plugin-google-analytics": "^2.0.0",
"gatsby-plugin-less": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-netlify": "^2.0.0",
"gatsby-plugin-offline": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-typescript": "^2.0.13",
"gatsby-remark-copy-linked-files": "^2.0.0",
"gatsby-remark-embed-snippet": "^3.0.0",
"gatsby-remark-prismjs": "^3.0.2",
"gatsby-source-filesystem": "^2.0.0",
"gatsby-transformer-remark-antd": "^1.0.0",
"gh-pages": "^1.0.0",
"github-slugger": "^1.2.1",
"less": "^3.9.0",
"lint-staged": "^7.0.5",
"lz-string": "^1.4.4",
"mdast-util-to-string": "^1.0.5",
"nprogress": "^0.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.0",
"prismjs": "^1.15.0",
"stylelint": "^9.4.0",
"typescript": "^3.5.2"
},
"title": "Sortd Website"
}