-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
83 lines (83 loc) · 2.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vscode-coding-tracker-server",
"version": "0.7.0-dev",
"description": "Visual Studio Code Coding Tracker Server Script",
"main": "app.js",
"scripts": {
"test": "mocha --recursive test/src",
"test-without-eslint-tsc": "npm test -- --no-eslint --no-tsc",
"build": "node ./build/build.js",
"dev": "node ./build/build.js -w",
"watch": "node ./build/build.js -w",
"build-live": "node ./build/build.js -w",
"start": "node ./app",
"server": "node ./app",
"install-git-hooks": "cp ./utilities/git-pre-commit-hook.sh ./.git/hooks/pre-commit -vf",
"new-version": "bash ./utilities/new-version-tag.sh"
},
"bin": {
"coding-tracker-server": "app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hangxingliu/vscode-coding-tracker-server"
},
"keywords": [
"vscode",
"server",
"express",
"analyzer"
],
"dependencies": {
"body-parser": "^1.18.3",
"colors": "^1.2.5",
"commander": "^2.15.1",
"express": "^4.16.3",
"fs-extra": "^4.0.3",
"morgan": "^1.9.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@hangxingliu/assert": "^0.1.1",
"@types/body-parser": "^1.16.8",
"@types/bootstrap": "^4.0.1",
"@types/colors": "^1.1.3",
"@types/downloadjs": "^1.4.0",
"@types/express": "^4.0.39",
"@types/fs-extra": "^4.0.4",
"@types/jquery": "^3.3.1",
"@types/mocha": "^2.2.44",
"@types/morgan": "^1.7.35",
"@types/node": "^8.0.51",
"@types/popper.js": "^1.11.0",
"async": "^2.6.0",
"autoprefixer": "^8.4.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.2",
"babel-plugin-minify-mangle-names": "^0.4.0",
"babel-plugin-transform-merge-sibling-variables": "^6.9.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"browser-sync": "^2.26.3",
"browserify": "^16.2.3",
"cheerio": "^1.0.0-rc.2",
"core-js": "^2.5.3",
"downloadjs": "^1.4.7",
"ejs": "^2.5.9",
"eslint": "^4.18.2",
"hoek": "^5.0.3",
"html-minifier": "^3.5.15",
"lodash": "^4.17.11",
"mocha": "^4.0.1",
"node-sass": "^4.9.4",
"postcss": "^6.0.22",
"pug": "^2.0.3",
"request": "^2.87.0",
"tree-kill": "^1.2.0",
"typescript": "^2.7.2",
"watch": "^1.0.2",
"watchify": "^3.11.0"
},
"author": "hangxingliu",
"license": "GPL-3.0"
}