-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "bcc-site",
"description": "BCC Website",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"format": "prettier --config ./.prettierrc --write src/**/*.js",
"build:dir": "mkdirp ./public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && npm run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose",
"lint:js": "eslint --fix \"**/*.{js,jsx}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"test-write": "jest --watch",
"test:lint": "npm run lint",
"test:functional": "jest"
},
"dependencies": {
"@fullpage/react-fullpage": "^0.1.18",
"@reach/dialog": "^0.11.2",
"@reach/router": "^1.3.4",
"@reach/visually-hidden": "^0.11.1",
"add": "^2.0.6",
"babel-plugin-styled-components": "^1.11.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.2.0",
"gatsby": "^2.25.3",
"gatsby-image": "^2.4.21",
"gatsby-plugin-netlify": "^2.4.0",
"gatsby-plugin-netlify-cms": "^4.3.17",
"gatsby-plugin-offline": "^3.3.2",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sharp": "^2.7.1",
"gatsby-plugin-sitemap": "^2.5.0",
"gatsby-plugin-smoothscroll": "^1.2.0",
"gatsby-plugin-styled-components": "^3.3.14",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-source-filesystem": "^2.4.1",
"gatsby-transformer-json": "^2.4.15",
"gatsby-transformer-remark": "^2.9.2",
"gatsby-transformer-sharp": "^2.5.21",
"intersection-observer": "^0.11.0",
"locomotive-scroll": "^3.6.1",
"netlify-cms-app": "^2.13.2",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-burger-menu": "^2.9.0",
"react-chrono": "^1.7.4",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "npm:@hot-loader/react-dom",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-pose": "^4.0.5",
"react-reveal": "^1.2.2",
"react-scroll-horizontal": "^1.6.6",
"react-scroll-wheel-handler": "^2.0.1",
"react-spring": "^8.0.27",
"styled-components": "^5.2.1",
"surge": "^0.21.6",
"yarn": "^1.22.10"
},
"devDependencies": {
"ava": "^3.13.0",
"babel-eslint": "^10.0.1",
"chrome-launcher": "^0.13.4",
"core-js": "^3.6.5",
"directory-named-webpack-plugin": "^4.0.0",
"eslint": "^7.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"favicons": "^6.2.0",
"gatsby-plugin-eslint": "^2.0.8",
"lighthouse": "^6.4.1",
"mkdirp": "^1.0.4",
"node-gyp": "^7.1.2"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}