This repository was archived by the owner on Feb 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.73 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
{
"name": "nomios-io",
"private": true,
"description": "The nomios.io website",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/nomios.io"
},
"bugs": {
"url": "https://github.com/ipfs-shipyard/nomios.io"
},
"scripts": {
"prebuild": "rimraf public",
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "exit 0",
"lint": "eslint --ignore-path .gitignore . && stylelint --ignore-path .gitignore \"**/*.css\"",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "npm run deploy",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"dependencies": {
"@researchgate/react-intersection-observer": "^1.0.1",
"cancel.it": "^0.1.1",
"classnames": "^2.2.6",
"final-form-focus": "^1.1.2",
"gatsby": "^2.7.1",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-mailchimp": "^5.1.0",
"gatsby-plugin-postcss": "^2.0.7",
"gatsby-plugin-react-helmet": "^3.1.0",
"is-mobile": "^2.0.1",
"keyboard-only-outlines": "^1.0.3",
"lodash": "^4.17.11",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"proper-on-transition-end": "^0.3.1",
"react": "^16.8.6",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-lottie": "^1.2.3",
"react-modal": "^3.8.1",
"react-slick": "^0.24.0",
"react-spinners": "^0.5.4",
"react-youtube": "^7.9.0",
"scrollbar-compensate": "^0.2.2",
"slick-carousel": "^1.8.1",
"tiny-dom-helpers": "^1.2.4"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"babel-preset-moxy": "^3.1.0",
"commitlint": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-moxy": "^7.1.0",
"final-form": "^4.13.1",
"gh-pages": "^2.0.1",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"postcss-preset-moxy": "^4.1.2",
"raw-loader": "^2.0.0",
"react-final-form": "^6.0.1",
"rimraf": "^2.6.3",
"standard-version": "^6.0.1",
"stylelint": "^10.0.1",
"stylelint-config-moxy": "^6.1.0",
"svg-css-modules-loader": "^1.6.1",
"svgo-loader": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"posttag": "git push --follow-tags origin master"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.css": [
"stylelint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}