-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "niqc",
"author": "International Neuroinformatics Coordinating Facility",
"title": "niQC",
"description": "NeuroImaging Quality Control (niQC)",
"homepage": "https://incf.github.io/niQC/",
"license": "MIT",
"version": "0.0.7",
"repository": {
"type": "git",
"url": "https://github.com/INCF/niQC"
},
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop --host=0.0.0.0 -p 9000",
"serve": "gatsby serve",
"build": "gatsby build",
"clean": "rm -rf public && rm -rf .cache",
"format-output": "prettier src/**/*.{js,jsx}",
"format": "prettier --write src/**/*.{js,jsx}",
"lint-errors": "eslint src/**/*.{js,jsx} --quiet",
"lint": "eslint src/**/*.{js,jsx}",
"deploy": "npm run clean && gatsby build --prefix-paths && cp -r .github public/.github"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@emotion/core": "^10.0.6",
"@emotion/styled": "^10.0.6",
"babel-plugin-emotion": "^10.0.6",
"emotion-theming": "^10.0.6",
"gatsby": "^2.3.25",
"gatsby-cli": "^2.5.12",
"gatsby-image": "^2.0.31",
"gatsby-plugin-catch-links": "^2.0.12",
"gatsby-plugin-emotion": "^4.0.4",
"gatsby-plugin-feed": "^2.1.1",
"gatsby-plugin-google-analytics": "^2.0.16",
"gatsby-plugin-manifest": "^2.0.22",
"gatsby-plugin-offline": "^2.0.24",
"gatsby-plugin-react-helmet": "^3.0.8",
"gatsby-plugin-sharp": "^2.0.35",
"gatsby-plugin-sitemap": "^2.0.6",
"gatsby-plugin-typography": "^2.2.8",
"gatsby-remark-copy-linked-files": "^2.0.13",
"gatsby-remark-copy-relative-linked-files": "^1.0.2",
"gatsby-remark-images": "^3.0.6",
"gatsby-remark-prismjs": "^3.2.0",
"gatsby-source-filesystem": "^2.0.23",
"gatsby-transformer-remark": "^2.3.1",
"gatsby-transformer-sharp": "^2.1.15",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-headroom": "^2.2.8",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.19",
"typeface-candal": "0.0.54",
"typeface-open-sans": "0.0.54",
"typography": "^0.16.19"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"gh-pages": "^2.0.1",
"lighthouse": "^3.2.1",
"prettier": "^1.15.3"
},
"keywords": [
"incf",
"niqc"
]
}