-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "site",
"description": "Primary website for the dsmJS user-group",
"license": "MIT",
"author": "dsmJS",
"maintainers": [
"Matt Travi <[email protected]> (https://matt.travi.org/)"
],
"contributors": [
"Dustin Schau <[email protected]> (https://dustinschau.com)",
"Michael Leners <[email protected]> (https://micleners.com/)"
],
"private": true,
"repository": "dsmjs/site",
"bugs": "https://github.com/dsmjs/site/issues",
"homepage": "https://site.dsmjs.com/",
"scripts": {
"lint:js": "eslint . --cache",
"lint:md": "remark --frail --quiet .",
"lint:peer": "npm ls >/dev/null",
"test": "run-s lint:* build",
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"start": "run-s develop",
"presnapshot": "run-s build",
"snapshot": "npx percy snapshot public/",
"deploy": "run-p --print-label deploy:*",
"predeploy:netlify": "run-s build",
"deploy:netlify": "netlify deploy --dir=./public",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@dsmjs/eslint-config": "1.0.92",
"@dsmjs/eslint-config-react": "1.1.73",
"@dsmjs/remark-preset-lint": "2.0.13",
"commitlint-config-dsmjs": "1.0.43",
"cz-conventional-changelog": "3.3.0",
"greenkeeper-lockfile": "1.15.1",
"husky": "8.0.1",
"netlify-cli": "8.2.4",
"npm-run-all": "4.1.5",
"remark": "14.0.2",
"remark-cli": "10.0.1",
"remark-frontmatter": "4.0.1"
},
"dependencies": {
"@dsmjs/components": "5.2.57",
"gatsby": "2.32.13",
"gatsby-link": "4.6.0",
"gatsby-plugin-glamor": "2.10.0",
"gatsby-plugin-google-fonts": "1.0.1",
"gatsby-plugin-netlify": "2.11.1",
"gatsby-plugin-react-helmet": "3.10.0",
"gatsby-remark-autolink-headers": "2.11.0",
"gatsby-remark-prismjs": "3.13.0",
"gatsby-source-filesystem": "2.11.1",
"gatsby-transformer-remark": "2.16.1",
"glamor": "2.20.40",
"prismjs": "1.28.0",
"prop-types": "15.8.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-helmet": "6.1.0"
}
}