-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "succession",
"version": "0.0.1",
"description": "Static web application for exploring the British line of succession",
"main": "index.html",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"serve": "ws --port 9000 --directory build --log.format dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdclarke5/succession.git"
},
"keywords": [
"british",
"royal",
"family",
"succession",
"line"
],
"author": "Jackson Clarke",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jdclarke5/succession/issues"
},
"homepage": "https://github.com/jdclarke5/succession#readme",
"dependencies": {
"d3": "^5.16.0",
"lit-element": "^2.4.0"
},
"devDependencies": {
"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"local-web-server": "^4.2.1",
"rollup": "^2.35.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^7.0.2"
}
}