-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "KST",
"version": "0.0.4",
"description": "Kerbal Space Tracking",
"main": "index.js",
"scripts": {
"start": "http-server -c-1 ./",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run serve\"",
"serve": "http-server -c-0 ./",
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint \"lib/**/*.js\" --fix",
"lint-ci": "eslint \"lib/**/*.js\"",
"upgrade": "npm-check -Eu"
},
"repository": {
"type": "git",
"url": "https://git.lsys.ac/lsys/krpc-web"
},
"author": "",
"license": "ISC",
"dependencies": {
"http-server": "0.11.1",
"krpc.js": "git+https://github.com/lucaelin/krpc.js.git",
"lit-html": "^1.1.2",
"three": "0.137.0"
},
"devDependencies": {
"eslint": "4.18.1",
"eslint-config-google": "^0.9.1",
"npm-check": "^5.9.0",
"concurrently": "^4.1.2",
"http-server": "^0.11.1",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-embed-css": "^1.0.4",
"rollup-plugin-minify-html-literals": "^1.2.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1"
}
}