-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.81 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "peritext-template-pyrrah",
"version": "0.3.11",
"description": " a web template designed dedicated to long reading experiences and context explorations, for the peritext ecosystem",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist; mkdir dist; babel src -d dist",
"addbuild": "git add dist",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"pre-commit": [
"lint",
"build",
"addbuild"
],
"author": "Robin de Mourat",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/peritext/peritext-template-pyrrah/issues"
},
"homepage": "https://github.com/peritext/peritext-template-pyrrah#readme",
"peerDependencies": {
"react": "^16.11.0",
"react-dom": "^16.11.0",
"lodash": "^4.17",
"peritext-utils": "^0.2.13"
},
"dependencies": {
"peritext-schemas": "^0.2.4",
"react-citeproc": "^0.1.10",
"react-helmet": "^5.2.0",
"react-markdown": "^4.0.6",
"redraft": "^0.10.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@robindemourat/eslint-config": "git+https://github.com/robindemourat/eslint-config.git",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"axios": "^0.18.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-react": "^7.5.1",
"lodash": "^4.17.11",
"peritext-contextualizer-bib": "^0.2.3",
"peritext-contextualizer-embed": "^0.1.2",
"peritext-contextualizer-glossary": "^0.1.0",
"peritext-contextualizer-image": "^0.2.1",
"peritext-contextualizer-source-code": "^0.1.0",
"peritext-contextualizer-table": "^0.1.2",
"peritext-contextualizer-vegalite": "^0.1.0",
"peritext-contextualizer-video": "^0.2.1",
"peritext-contextualizer-webpage": "^0.1.0",
"peritext-utils": "^0.2.13",
"pre-commit": "^1.2.2",
"raw-loader": "^2.0.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-frame-component": "^4.1.0"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
}
}