-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "expr",
"description": "Exam preparation site 2018",
"version": "1.1.0",
"author": "Kristoffer-Andre Kalliainen <[email protected]>",
"dependencies": {
"babel-plugin-styled-components": "^1.8.0",
"gatsby": "^2.0.19",
"gatsby-link": "^2.0.6",
"gatsby-plugin-feed": "^2.0.7",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-google-tagmanager": "^2.0.5",
"gatsby-plugin-manifest": "^2.0.4",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-plugin-styled-components": "^3.0.0",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.3",
"gatsby-remark-prismjs": "^3.0.1",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-source-filesystem": "^2.0.2",
"gatsby-transformer-remark": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.3",
"prismjs": "^1.15.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"scrollprogress": "^3.0.2",
"styled-components": "^3.4.9"
},
"keywords": [
"Gatsby.js"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build --prefix-paths",
"dev": "gatsby develop --prefix-paths",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\"",
"clean": "rm -rf ./public && rm -rf .cache",
"deploy": "gatsby build --prefix-paths && gh-pages -d public",
"serve": "gatsby build --prefix-paths && gatsby serve --prefix-paths"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"prettier": "^1.14.3"
}
}