-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "@riboseinc/react-static-plugin-glossarist",
"version": "1.0.0",
"description": "",
"main": "node.api.js",
"repository": "git@github.com:riboseinc/react-static-plugin-glossarist.git",
"author": "Ribose Inc. <open.source@ribose.com>",
"license": "MIT",
"private": false,
"files": [
"README.adoc",
"*.js",
"*.js.map",
"*.d.ts",
"DefaultDocPage/*.js",
"DefaultDocPage/*.js.map",
"DefaultDocPage/*.d.ts",
"DefaultDocPage/*.css"
],
"scripts": {
"build": "rm -r compiled dist; mkdir compiled dist; tsc --outDir compiled; babel compiled --out-dir dist; cp package.json dist/; rsync -a --include '*/' --include '*.css' --exclude '*' src/ dist/; rsync -a --include '*/' --include '*.d.ts' --include '*.js.map' --exclude '*' compiled/ dist/"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@types/js-yaml": "^3.12.5",
"@types/jsdom": "^16.2.4",
"@types/node": "^14.6.0",
"@types/reach__router": "^1.3.6",
"@types/react": "^17.0.1",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.3",
"@types/webpack-dev-server": "^3.11.0",
"electron": "^11.2.3",
"react-static": "^7.4.2",
"typescript": "^4.0.2"
},
"dependencies": {
"@reach/router": "^1.3.4",
"@riboseinc/paneron-extension-glossarist": "^1.0.0-dev9",
"@riboseinc/paneron-extension-kit": "=1.0.1",
"@riboseinc/paneron-registry-kit": "^1.0.0-alpha21",
"asciidoctor": "^2.2.0",
"directory-tree": "^2.2.4",
"js-yaml": "^3.14.0",
"jsdom": "^16.4.0",
"probe-image-size": "^5.0.0",
"react": "^16.13.1",
"styled-components": "^5.2.0"
},
"peerDependencies": {
"react-static": "^7"
}
}