-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
125 lines (125 loc) · 3 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "uptimerobot-page",
"description": "Another status page based on UptimeRobot",
"version": "0.1.0",
"main": "build/bootstrap/app.js",
"repository": "https://github.com/giuem/uptimerobot-page.git",
"author": "giuem <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"start": "node build/bootstrap",
"dev": "gulp dev",
"build:server": "babel src -d build",
"build": "npm run build:server && gulp",
"clean": "rimraf build",
"precommit": "npm run test",
"test": "NODE_ENV=test nyc ava",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"homepage": "https://github.com/giuem/uptimerobot-page",
"bugs": {
"url": "https://github.com/giuem/uptimerobot-page/issues"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"config": "^2.0.1",
"cron": "^1.3.0",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"immutable": "^3.8.2",
"js-yaml": "^3.13.1",
"koa": "^2.4.1",
"koa-router": "^7.3.0",
"koa-static-cache": "^5.1.2",
"koa-views": "^6.1.3",
"memory-cache": "^0.2.0",
"pug": "^2.0.0-rc.4",
"uptimerobot-apiv2": "^0.0.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.1.5",
"ava": "1.0.0-rc.1",
"browser-sync": "^2.26.0",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.1.0",
"cssnano": "^4.1.4",
"eslint": "^5.6.1",
"eslint-config-prettier": "^2.10.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.4.2",
"gulp-postcss": "^7.0.1",
"gulp-rev": "^8.1.1",
"gulp-rev-replace": "^0.4.4",
"gulp-uglify": "^3.0.1",
"husky": "^0.14.3",
"nock": "^9.6.1",
"normalize.css": "^8.0.0",
"nyc": "^12.0.2",
"postcss-assets": "^5.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-debug": "^0.4.2",
"postcss-import": "^11.1.0",
"postcss-nested": "^3.0.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"superkoa": "^1.0.3",
"time-require": "^0.1.2"
},
"eslintConfig": {
"extends": [
"standard",
"prettier"
],
"plugins": [
"prettier",
"standard"
],
"rules": {
"prettier/prettier": "error"
},
"env": {
"node": true,
"es6": true
}
},
"eslintIgnore": [
"build",
"public"
],
"ava": {
"files": [
"test/test.js",
"src/**/__tests__/**/*.js"
],
"sources": [
"src/**/*.js"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"tap": false,
"powerAssert": true,
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"src/public/**/*",
"src/**/*.spec.js",
"src/lib/logger.js"
]
}
}