-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "opencode",
"description": "The opencode.ca website",
"version": "0.1.0",
"author": "Rémi Prévost <remi@exomel.com>",
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"gatsby": "^2.1.23",
"gatsby-image": "^2.0.31",
"gatsby-plugin-emotion": "^4.0.4",
"gatsby-plugin-offline": "^2.0.24",
"gatsby-plugin-react-helmet": "^3.0.8",
"gatsby-source-filesystem": "^2.0.23",
"intl": "^1.2.5",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"simple-css-reset": "^3.0.0"
},
"devDependencies": {
"eslint": "5.14.1",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-mirego": "0.0.1",
"prettier": "^1.16.4"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve"
}
}