-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 KB
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
{
"name": "bandsy-web",
"private": true,
"version": "0.1.0",
"dependencies": {
"babel-plugin-styled-components": "^1.10.7",
"gatsby": "^2.20.12",
"gatsby-image": "^2.3.1",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sharp": "^2.5.3",
"gatsby-plugin-styled-components": "^3.2.1",
"gatsby-plugin-ts-config": "^0.2.2",
"gatsby-plugin-typescript": "^2.3.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-sharp": "^2.4.3",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"rsup-progress": "^1.4.0",
"styled-bootstrap-grid": "^3.1.0",
"styled-components": "^5.1.0",
"universal-cookie": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.3.0",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"watch": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"serve": "gatsby serve -p 3000",
"docker:serve": "gatsby serve -p 3000 -H 0.0.0.0",
"clean": "gatsby clean",
"test": "jest ./src",
"lint": "eslint ./src/**/*.ts ./src/**/*.tsx"
}
}