-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 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
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
{
"private": true,
"engines": {
"node": "~20.4"
},
"scripts": {
"start": "node server.js",
"test": "node ./node_modules/.bin/grunt e2eTest",
"coverage": "node ./node_modules/.bin/grunt nyc"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
},
"dependencies": {
"bunyan": "^1.8.15",
"koa": "^2.13.1",
"koa-logger": "^3.2.1",
"koa-simple-healthcheck": "^0.0.1",
"koa-sendfile": "^3.0.0",
"koa-static": "^5.0.0",
"@koa/router": "^10.0.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.5.2",
"bower": "^1.7.9",
"browser-sync": "^2.2.1",
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"chai-http": "^4.3.0",
"del": "^1.1.1",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-notify": "^0.4.5",
"grunt-simple-nyc": "^3.0.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.1",
"gulp-babel": "^6.1.1",
"gulp-cache": "^0.4.2",
"gulp-cssnano": "^2.0.0",
"gulp-eslint": "^2.0.0",
"gulp-htmlmin": "^1.3.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.2.1",
"gulp-load-plugins": "^0.10.0",
"gulp-plumber": "^1.0.1",
"gulp-size": "^1.2.1",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.1.0",
"gulp-useref": "^3.0.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"load-grunt-tasks": "^5.1.0",
"main-bower-files": "^2.5.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.0",
"wiredep": "^2.2.2"
},
"resolutions": {
"graceful-fs": "^4.2.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}