2018-06-26 05:39:49 +00:00
|
|
|
{
|
|
|
|
"name": "badgen-service",
|
|
|
|
"description": "Badge generating service",
|
|
|
|
"author": "Amio <amio.cn@gmail.com>",
|
|
|
|
"license": "ISC",
|
2018-10-16 02:24:21 +00:00
|
|
|
"private": true,
|
2018-06-26 05:39:49 +00:00
|
|
|
"scripts": {
|
|
|
|
"lint": "standard",
|
2018-10-17 07:15:58 +00:00
|
|
|
"dev": "micro-dev service.js -s -i .next",
|
2018-09-04 07:00:54 +00:00
|
|
|
"dev:web": "next",
|
|
|
|
"build": "NODE_ENV=production next build && next export -o public",
|
2018-08-03 14:40:44 +00:00
|
|
|
"pretest": "npm run lint",
|
2018-07-31 09:51:37 +00:00
|
|
|
"test": "tap test/*.js --reporter spec -j12",
|
2018-08-05 00:40:10 +00:00
|
|
|
"start": "node service.js",
|
2018-09-19 02:30:30 +00:00
|
|
|
"now-prune": "now rm badgen-service --safe -y -T amio || true",
|
2018-10-16 02:24:21 +00:00
|
|
|
"predeploy": "now -T amio inspect badgen.net",
|
2018-09-19 02:30:30 +00:00
|
|
|
"deploy": "now -T amio && now -T amio alias",
|
|
|
|
"canary": "now -T amio && now -T amio alias badgen-canary"
|
2018-06-26 05:39:49 +00:00
|
|
|
},
|
2018-09-06 09:54:28 +00:00
|
|
|
"standard": {
|
|
|
|
"parser": "babel-eslint"
|
|
|
|
},
|
2018-06-26 05:39:49 +00:00
|
|
|
"dependencies": {
|
2019-03-25 12:46:56 +00:00
|
|
|
"badgen": "^2.7.1",
|
|
|
|
"badgen-icons": "^0.7.0",
|
2018-12-25 02:39:49 +00:00
|
|
|
"byte-size": "^5.0.1",
|
2018-08-04 11:52:36 +00:00
|
|
|
"cheerio": "^1.0.0-rc.2",
|
2018-10-19 03:02:19 +00:00
|
|
|
"chrome-webstore": "^1.2.1",
|
2018-12-11 02:22:10 +00:00
|
|
|
"date-fns": "^1.30.1",
|
2019-01-18 02:08:49 +00:00
|
|
|
"got": "^9.6.0",
|
2018-09-07 07:13:08 +00:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2018-08-10 02:41:06 +00:00
|
|
|
"micro": "^9.3.3",
|
2019-02-25 02:23:33 +00:00
|
|
|
"micro-fork": "^1.0.0",
|
2018-07-10 08:17:58 +00:00
|
|
|
"millify": "^2.0.1",
|
2018-09-05 02:17:04 +00:00
|
|
|
"raven": "^2.6.4",
|
2018-10-15 09:44:49 +00:00
|
|
|
"react-debounce-render": "^5.0.0",
|
2018-10-11 09:03:06 +00:00
|
|
|
"semver": "^5.6.0",
|
2019-02-06 02:33:57 +00:00
|
|
|
"serve-handler": "^5.0.8",
|
2019-03-24 15:41:58 +00:00
|
|
|
"serve-marked": "^1.0.0"
|
2018-06-26 05:39:49 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-03-15 14:46:08 +00:00
|
|
|
"@mdx-js/mdx": "^0.20.3",
|
2018-11-07 09:38:43 +00:00
|
|
|
"@zeit/next-mdx": "^1.2.0",
|
2018-09-28 02:42:10 +00:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-07-22 13:00:51 +00:00
|
|
|
"micro-dev": "^3.0.0",
|
2019-02-25 02:31:49 +00:00
|
|
|
"next": "^8.0",
|
2019-03-24 15:14:08 +00:00
|
|
|
"react": "^16.8.5",
|
|
|
|
"react-dom": "^16.8.5",
|
2018-08-31 02:33:29 +00:00
|
|
|
"standard": "^12.0.1",
|
2019-03-24 15:52:07 +00:00
|
|
|
"supertest": "^4.0.2",
|
2019-03-24 15:14:08 +00:00
|
|
|
"tap": "^12.6.1"
|
2018-07-20 09:43:07 +00:00
|
|
|
}
|
2018-06-26 05:39:49 +00:00
|
|
|
}
|