This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
75 lines (75 loc) · 2.78 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
{
"name": "allennlp-guide",
"private": true,
"description": "Diving Into Natural Language Processing With AllenNLP",
"version": "1.0.0",
"author": "AllenNLP <[email protected]>",
"dependencies": {
"@allenai/varnish": "0.8.11",
"@illinois/react-use-local-storage": "^1.1.0",
"@jupyterlab/outputarea": "^0.19.1",
"@jupyterlab/rendermime": "^0.19.1",
"@phosphor/widgets": "^1.6.0",
"antd": "^3.26.7",
"autoprefixer": "^9.4.7",
"babel-plugin-styled-components": "^1.10.7",
"codemirror": "^5.43.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"gatsby": "^2.1.4",
"gatsby-image": "^2.0.29",
"gatsby-plugin-antd": "^2.1.0",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-offline": "^2.0.23",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.0.29",
"gatsby-plugin-sitemap": "^2.0.5",
"gatsby-plugin-styled-components": "^3.1.18",
"gatsby-remark-copy-linked-files": "^2.0.9",
"gatsby-remark-images": "^3.0.4",
"gatsby-remark-katex": "^4.1.0",
"gatsby-remark-prismjs": "^3.2.4",
"gatsby-remark-smartypants": "^2.0.8",
"gatsby-remark-unwrap-images": "^1.0.1",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.1.17",
"juniper-js": "^0.1.0",
"katex": "^0.13.0",
"prismjs": "^1.25.0",
"react": "^16.8.2",
"react-animate-height": "^2.0.20",
"react-dom": "^16.8.2",
"react-helmet": "^5.2.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"rehype-react": "^3.1.0",
"remark-react": "^5.0.1",
"styled-components": "^4.4.1"
},
"scripts": {
"start": "gatsby serve --port 8000 --host 0.0.0.0",
"build": "gatsby build",
"dev": "gatsby develop",
"lint": "eslint '**/*.{js,ts,tsx,json}'",
"lint:fix": "eslint '**/*.{js,ts,tsx,json}' --fix && echo '🛠 Lint --fix complete.'",
"clear": "rm -rf .cache",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"browser-monads": "^1.0.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/allenai/allennlp-guide"
}
}