forked from BytecodeAgency/Bytecode-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.32 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.32 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "bytecode-website",
"private": false,
"description": "The Bytecode Digital Agency website, released as free software",
"version": "v2.5.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": {
"@mdx-js/mdx": "^1.0.14",
"@mdx-js/react": "^1.0.6",
"axios": "^0.19.0",
"babel-preset-gatsby": "^0.2.13",
"change-case": "^4.1.1",
"gatsby": "^2.18.21",
"gatsby-image": "^2.2.18",
"gatsby-mdx": "^0.6.2",
"gatsby-plugin-babel": "^1.0.0",
"gatsby-plugin-manifest": "^2.2.16",
"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": "^3.2.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-grid-system": "^4.4.3",
"react-helmet": "^5.2.1",
"styled-components": "^5.0.0",
"styled-components-style-utils": "^1.2.1",
"to-style": "^1.3.3",
"yarn": "^1.17.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.16.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"typescript": "^3.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/BytecodeBV"
}
}