-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.99 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
95
{
"name": "bytecode-website",
"private": false,
"description": "The Bytecode Digital Agency website, released as free software",
"version": "v2.7.1",
"author": "Luciano Nooijen <[email protected]>",
"keywords": [
"bytecode"
],
"license": "AGPL-3.0",
"scripts": {
"start": "yarn run dev",
"dev": "gatsby develop",
"build": "gatsby build",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src",
"lint:fix": "yarn run lint --fix",
"test": "NODE_ENV=test jest",
"test:watch": "yarn run test --watch",
"test:ci": "yarn run test --coverage --ci",
"serve": "gatsby serve",
"reinstall": "rm -rf node_modules && yarn"
},
"dependencies": {
"@babel/core": " ^7.0.0-0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@react-icons/all-files": "^4.1.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@types/react": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/react-stickynode": "^3.0.1",
"@types/uuid": "^8.3.0",
"axios": "^0.21.0",
"babel-preset-gatsby": "^0.8.0",
"change-case": "^4.1.2",
"core-js": "^3.0.0",
"gatsby": "^2.29.1",
"gatsby-image": "^2.2.18",
"gatsby-plugin-babel": "^1.0.0",
"gatsby-plugin-manifest": "^2.2.16",
"gatsby-plugin-mdx": "^2.6.0",
"gatsby-plugin-offline": "^3.0.5",
"gatsby-plugin-react-helmet": "^3.1.7",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.2.21",
"gatsby-plugin-sitemap": "^2.2.12",
"gatsby-plugin-styled-components": "^3.1.17",
"gatsby-remark-images": "^3.1.42",
"gatsby-source-filesystem": "^2.1.22",
"gatsby-transformer-sharp": "^2.3.12",
"polished": "^4.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-grid-system": "^7.1.1",
"react-helmet": "^6.1.0",
"react-is": "16.8.0",
"react-stickynode": "^3.0.5",
"sharp": "^0.28.3",
"styled-components": "^5.2.1",
"styled-components-style-utils": "^1.2.1",
"to-style": "^1.3.3",
"uuid": "^8.3.2",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/preset-env": "^7.14.4",
"@types/mdx-js__react": "^1.5.3",
"@types/react-dom": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-styled-components": "^1.5.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-migrate": "^0.1.10",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/BytecodeBV"
}
}