-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.7 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.7 KB
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
{
"name": "syncthing",
"version": "1.0.0",
"description": "A better videosync",
"private": true,
"//scripts_comments": {
"serve": "runs the compiled server",
"watch": "recompiles and reloads on each change",
"build": "compiles typescript"
},
"scripts": {
"start": "npm run watch",
"serve": "npx ./dist/server.js",
"watch": "npm-run-all -p watch:*",
"watch:serve": "nodemon ./dist/server.js --dev",
"watch:build": "tsc -w --sourcemap",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "npx eslint . --ext .js,.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/table-e2/syncthing.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/table-e2/syncthing/issues"
},
"homepage": "https://github.com/table-e2/syncthing#readme",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/express-handlebars": "^3.1.0",
"@types/minimist": "^1.2.0",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^16.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"typescript": "^3.8.3"
}
}