-
-
Notifications
You must be signed in to change notification settings - Fork 430
/
package.json
101 lines (101 loc) · 2.67 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "google-webfonts-helper",
"version": "1.1.0",
"homepage": "https://gwfh.mranftl.com",
"main": "server/app.ts",
"author": "majodev",
"license": "MIT",
"keywords": [
"google fonts",
"web fonts",
"download",
"woff",
"svg",
"ttf",
"woff2",
"eot",
"css",
"snippet",
"hosting"
],
"repository": {
"type": "git",
"url": "https://github.com/majodev/google-webfonts-helper.git"
},
"dependencies": {
"axios": "1.6.8",
"bluebird": "3.7.2",
"compression": "1.7.4",
"css": "3.0.0",
"express": "4.19.2",
"jszip": "3.10.1",
"lodash": "4.17.21",
"morgan": "1.10.0",
"source-map-support": "0.5.21",
"speakingurl": "14.0.1"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/bluebird": "^3.5.38",
"@types/css": "^0.0.33",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "18",
"@types/speakingurl": "^13.0.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"bower": "^1.3.8",
"connect-livereload": "~0.4.0",
"errorhandler": "~1.0.0",
"eslint": "^8.34.0",
"file-type": "16.5.4",
"grunt": "~0.4.4",
"grunt-angular-templates": "^0.5.4",
"grunt-asset-injector": "^0.1.0",
"grunt-autoprefixer": "~0.7.2",
"grunt-concurrent": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-htmlmin": "~0.2.0",
"grunt-contrib-imagemin": "1.0.1",
"grunt-contrib-less": "^0.11.0",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-dom-munger": "^3.4.0",
"grunt-env": "~0.4.1",
"grunt-express-server": "~0.4.17",
"grunt-mocha-test": "0.13.3",
"grunt-newer": "~0.7.0",
"grunt-ng-annotate": "^0.2.3",
"grunt-nodemon": "0.4.2",
"grunt-rev": "~0.1.0",
"grunt-svgmin": "~0.4.0",
"grunt-ts": "^6.0.0-beta.22",
"grunt-usemin": "~2.1.1",
"grunt-wiredep": "~1.8.0",
"jit-grunt": "^0.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prettier-plugin-organize-imports": "^3.2.2",
"punycode": "^1.4.1",
"should": "13.2.3",
"supertest": "6.3.3",
"time-grunt": "~0.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"start": "ts-node server/app.ts",
"lint": "eslint --ext .ts .",
"build": "grunt build",
"test": "grunt test",
"dev": "grunt serve",
"tsc": "tsc --noEmit --skipLibCheck"
},
"private": true
}