-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.71 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.71 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
76
77
78
{
"name": "syscase-website",
"description": "Syscase website",
"version": "0.0.1",
"license": "MIT",
"private": true,
"homepage": "https://syscase.org/",
"repository": {
"type": "git",
"url": "https://github.com/syscase/syscase.org.git"
},
"bugs": {
"url": "https://github.com/syscase/syscase.org/issues"
},
"scripts": {
"exec": "PATH=\"$PATH:./node_modules/.bin\" $@",
"build": "npm run exec -- gatsby build",
"develop": "npm run exec -- gatsby develop",
"flow": "npm run exec flow",
"format": "npm run exec -- prettier --config .prettierrc --write \"**/*.{js,jsx,json,md}\"",
"format:diff": "npm run exec -- prettier --config .prettierrc --list-different \"**/*.{js,jsx,json,md}\"",
"lint": "npm run exec -- eslint .",
"lint:fix": "npm run exec -- eslint --fix .",
"test": "npm run exec -- testcafe all tests/",
"test-cli": "npm run exec -- testcafe -c 2 chromium:headless,firefox:headless -s takeOnFails=true all tests/",
"ci": "npm run exec -- npm-run-all format:diff --parallel lint flow test-cli",
"start": "npm run develop",
"serve": "npm run exec -- gatsby serve",
"clean": "npm run exec -- gatsby clean"
},
"engines": {
"node": ">13.3.0",
"npm": "^6.13.1"
},
"dependencies": {
"@mdx-js/mdx": "^1.5.3",
"@mdx-js/react": "^1.5.3",
"gatsby": "^2.18.17",
"gatsby-image": "^2.2.37",
"gatsby-plugin-glamor": "^2.1.20",
"gatsby-plugin-google-analytics": "^2.1.31",
"gatsby-plugin-mdx": "^1.0.64",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sharp": "^2.3.10",
"gatsby-plugin-sitemap": "^2.2.24",
"gatsby-remark-autolink-headers": "^2.1.22",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-copy-linked-files": "^2.1.33",
"gatsby-remark-embedder": "^1.7.0",
"gatsby-remark-graphviz": "^1.1.20",
"gatsby-remark-images": "^3.1.39",
"gatsby-remark-normalize-paths": "^1.0.0",
"gatsby-remark-prismjs": "^3.3.29",
"gatsby-remark-responsive-iframe": "^2.2.30",
"gatsby-remark-smartypants": "^2.1.19",
"gatsby-source-filesystem": "^2.1.43",
"gatsby-transformer-remark": "^2.6.45",
"gatsby-transformer-sharp": "^2.3.9",
"glamor": "^2.20.40",
"normalize.css": "^8.0.1",
"prism-react-renderer": "^1.0.2",
"prismjs": "^1.18.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"prettier": "^1.19.1",
"npm-run-all": "^4.1.5",
"flow-bin": "^0.115.0",
"@babel/preset-flow": "^7.7.4",
"eslint-plugin-prettier": "^3.1.2",
"eslint-config-prettier": "^6.9.0",
"eslint-config-fbjs-opensource": "^2.0.1",
"eslint-plugin-testcafe": "^0.2.1",
"testcafe": "^1.8.2"
}
}