-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "paradrone-simulator",
"version": "1.0.0",
"description": "Web simulator for ParaDrone autopilot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/platypii/ParaDrone.git"
},
"type": "module",
"devDependencies": {
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.1",
"@types/chai": "5.0.1",
"@types/d3": "7.4.3",
"@types/mocha": "10.0.9",
"@typescript-eslint/eslint-plugin": "8.13.0",
"cesium": "1.123.0",
"chai": "5.1.2",
"eslint": "9.14.0",
"mocha": "10.8.2",
"rollup": "4.24.4",
"rollup-plugin-livereload": "2.0.5",
"rollup-plugin-serve": "3.0.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"d3-array": "3.2.4",
"d3-axis": "3.0.0",
"d3-drag": "3.0.0",
"d3-scale": "4.0.2",
"d3-selection": "3.0.0",
"d3-shape": "3.2.0"
},
"scripts": {
"build": "rollup -c",
"serve": "rollup -cw",
"lint": "eslint",
"lint-fix": "eslint --fix",
"test": "mocha"
}
}