-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
{
"name": "dps-website",
"private": true,
"description": "Digital Product School website",
"version": "0.1.0",
"author": "Digital Product School Core Team and Participants",
"dependencies": {
"@types/react": "^16.9.53",
"acorn": "^7.4.1",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.17",
"firebase": "^9.8.2",
"gatsby": "^4.24.6",
"gatsby-image": "^3.5.0",
"gatsby-plugin-canonical-urls": "^4.24.0",
"gatsby-plugin-manifest": "^4.14.0",
"gatsby-plugin-offline": "^5.24.0",
"gatsby-plugin-postcss": "^5.24.0",
"gatsby-plugin-react-helmet": "^5.24.0",
"gatsby-plugin-sitemap": "^5.24.0",
"gatsby-plugin-typescript": "^4.24.0",
"gatsby-source-filesystem": "^4.24.0",
"lint": "^1.1.2",
"minimist": "^1.2.6",
"moment": "^2.29.1",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.3.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-inlinesvg": "^0.8.4",
"react-router": "^5.2.0",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"installFunctions": "cd functions && npm install"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"dotenv": "^8.2.0",
"gatsby-disable-404": "^0.2.1",
"gh-pages": "^2.2.0",
"husky": "^2.3.0",
"postcss": "^8.4.14",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}