-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "peritext-contextualizer-webpage",
"version": "0.1.4",
"description": "Peritext default webpage contextualizer",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist; mkdir dist; babel src -d dist",
"addbuild": "git add dist"
},
"pre-commit": [
"build",
"addbuild"
],
"author": "Robin de Mourat",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/peritext/peritext-contextualizer-webpage/issues"
},
"homepage": "https://github.com/peritext/peritext-contextualizer-webpage#readme",
"peerDependencies": {
"react": "^16.7.0-alpha",
"react-dom": "^16.7.0-alpha"
},
"dependencies": {
"peritext-utils": "^0.1.0"
},
"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",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"lodash": "^4.17",
"peritext-schemas": "^0.1.0",
"pre-commit": "^1.2.2",
"react": "^16.7.0-alpha",
"react-dom": "^16.7.0-alpha"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-react"
]
}
}