-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.45 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
{
"name": "interscript.com",
"private": true,
"scripts": {
"start": "react-static start",
"stage": "react-static build --staging",
"build": "react-static build",
"bundle": "react-static bundle",
"adoc": "npm-run-all adoc:docs adoc:posts",
"adoc:docs": "asciidoctor docs/*.adoc -D tmp/docs/ -e",
"adoc:posts": "asciidoctor posts/*.adoc -D tmp/posts/",
"export": "react-static export",
"serve": "serve dist -p 3000 -s",
"format": "prettier -w \"src/**/*.{js,tsx,ts}\" \"*.{js,ts}\"\n",
"map": "node bin/downloadMapData.js",
"make": "npm-run-all copy_maps map build",
"copy_maps": "node bin/import_maps.js",
"clean": "rm -rf tmp dist"
},
"dependencies": {
"@n8tb1t/use-scroll-position": "^1.0.43",
"@reach/router": "^1.2.1",
"@riboseinc/iso-15924": "^1.20200424.0",
"@root/walk": "^1.1.0",
"axios": "^0.19.0",
"classnames": "^2.3.1",
"franc-all": "^7.1.0",
"interscript": "^2.4.5",
"iso-639-2": "^2.0.0",
"iso-639-3": "^2.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-loader-spinner": "^3.1.14",
"react-simple-tree-menu": "^1.1.18",
"react-static": "^7.2.0",
"react-static-plugin-reach-router": "^7.2.0",
"react-static-plugin-sitemap": "^7.2.0",
"react-static-plugin-source-filesystem": "^7.2.0",
"react-static-plugin-styled-components": "^7.3.0",
"react-static-plugin-typescript": "^7.2.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@octokit/rest": "^18.0.3",
"@types/node": "^12.7.2",
"@types/reach__router": "^1.2",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/react-helmet": "^6.1.0",
"@types/react-hot-loader": "^4.1.0",
"@types/react-loader-spinner": "^3.1.1",
"@types/styled-components": "^5.1.2",
"@types/webpack-env": "^1.14.0",
"adm-zip": "^0.5.5",
"asciidoctor": "^2.2.4",
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"react-hot-loader": "^4.12.11",
"request": "^2.88.2",
"serve": "^11.1.0",
"typescript": "^3.5.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": false,
"printWidth": 120,
"semi": true,
"jsxSingleQuote": false,
"proseWrap": "preserve"
}
}