-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 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
{
"name": "arethusa-widget",
"version": "2.1.3",
"description": "Arethusa treebank editor embedded widget",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/perseids-tools/arethusa-widget.git"
},
"bugs": {
"url": "https://github.com/perseids-tools/arethusa-widget/issues"
},
"homepage": "https://github.com/perseids-tools/arethusa-widget",
"license": "MIT",
"scripts": {
"build-arethusa": "bash build.sh",
"build-production": "webpack --mode production --config webpack.config.prod.js",
"build-demo": "bash build-demo.sh && webpack --mode production --config webpack.config.demo.js",
"build": "yarn build-arethusa && yarn build-production && yarn build-demo",
"demo": "http-server demo",
"deploy": "gh-pages -d demo",
"test": "bash test.sh",
"approve-changes": "bash approve-changes.sh",
"lint": "eslint --ext=js --ext=jsx src"
},
"devDependencies": {
"backstopjs": "^5.0.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"gh-pages": "^3.1.0",
"http-server": "^0.12.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}