-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "codethesouth",
"version": "0.9.0",
"description": "Website for Code the South - built with Gatsby.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/codethesouth/website.git"
},
"bugs": {
"url": "https://github.com/codethesouth/website/issues"
},
"license": "Apache-2.0",
"keywords": [
"website",
"nodejs",
"gatsby",
"nonprofit"
],
"dependencies": {
"gatsby": "^2.20.2",
"gatsby-plugin-manifest": "^2.3.1",
"gatsby-plugin-offline": "^3.1.0",
"gatsby-plugin-react-helmet": "^3.2.0",
"gatsby-plugin-sass": "^2.2.0",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-images": "^0.5.19",
"react-scrollspy": "^3.4.2",
"smoothscroll-polyfill": "^0.4.4"
},
"devDependencies": {
"prettier": "^1.17.0",
"rimraf": "^3.0.2"
},
"scripts": {
"develop": "gatsby develop",
"build": "npm run clean && gatsby build",
"serve": "gatsby serve",
"clean": "rimraf .cache public",
"format": "prettier --write '**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
}
}