badgen.net/package.json

54 wiersze
1.5 KiB
JSON
Czysty Zwykły widok Historia

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",
"start": "node service.js",
"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",
"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": {
"badgen": "^2.7.0",
2019-03-17 15:03:29 +00:00
"badgen-icons": "^0.6.1",
"byte-size": "^5.0.1",
2018-08-04 11:52:36 +00:00
"cheerio": "^1.0.0-rc.2",
"chrome-webstore": "^1.2.1",
"date-fns": "^1.30.1",
"got": "^9.6.0",
2018-09-07 07:13:08 +00:00
"lodash.debounce": "^4.0.8",
"micro": "^9.3.3",
"micro-fork": "^1.0.0",
2018-07-10 08:17:58 +00:00
"millify": "^2.0.1",
"raven": "^2.6.4",
"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-15 14:46:08 +00:00
"serve-marked": "^0.5.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",
"babel-eslint": "^10.0.1",
"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",
"standard": "^12.0.1",
2019-02-02 14:34:26 +00:00
"supertest": "^3.4.2",
2019-03-24 15:14:08 +00:00
"tap": "^12.6.1"
}
2018-06-26 05:39:49 +00:00
}