-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.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
{
"name": "get-dweb-dot-net",
"description": "DWeb connects the people, projects and protocols essential to building a decentralized web. A web that is more private, reliable, secure and open. A web with many winners—returning to the original vision of the World Wide Web and internet.",
"version": "0.2.0",
"author": "DWeb Team",
"contributors": [
"Dmitry Kulahin",
"Arkadiy Kukarkin",
"Will Howes"
],
"dependencies": {
"bootstrap": "^4.6.1",
"gatsby": "^5.4.2",
"gatsby-plugin-ipfs": "github:willmhowes/gatsby-plugin-ipfs",
"gatsby-plugin-purgecss": "^4.0.0",
"gatsby-plugin-react-helmet": "^6.4.0",
"gatsby-plugin-sass": "^6.4.0",
"gatsby-plugin-sharp": "^5.4.0",
"gatsby-remark-images": "^7.4.0",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-transformer-remark": "^6.4.0",
"gatsby-transformer-sharp": "^5.4.0",
"gatsby-transformer-yaml": "^5.4.0",
"globby": "^13.1.3",
"js-yaml": "^4.1.0",
"node-sass": "^8.0.0",
"p-map": "^5.5.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.5",
"rehype-raw": "^6.1.1",
"swiper": "^8.4.6"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"start": "npm run develop",
"clean": "rimraf .cache public && node scripts/cleanup_clone.mjs",
"build": "npm run clean && gatsby build --prefix-paths",
"develop": "npm run clean && gatsby develop",
"serve": "gatsby serve",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build:server": "node ./build_server.js",
"lint": "eslint --fix --ext .js,.jsx ."
},
"devDependencies": {
"chalk": "^5.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.1"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
}
}