1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/package.json

29 lines
622 B
JSON
Raw Normal View History

2019-04-21 19:17:15 +09:00
{
"name": "next-example",
"version": "1.0.0",
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"private": true,
"dependencies": {
2019-12-10 10:21:36 +09:00
"@material-ui/core": "~4",
"@material-ui/icons": "~4",
"@material-ui/styles": "~4",
"@mdx-js/loader": "~1",
"@next/mdx": "~9",
"next": "~9",
"react": "~16",
"react-dom": "~16"
2019-04-21 19:17:15 +09:00
},
"devDependencies": {
2019-12-10 10:21:36 +09:00
"@types/node": "~12",
2020-02-08 20:38:00 +09:00
"npm-run-all": "~4",
2020-05-12 21:39:02 +00:00
"typescript": "~3.9.0"
2019-04-21 19:17:15 +09:00
},
"scripts": {
2020-02-08 20:38:00 +09:00
"doc": "run-s build doc:export",
"doc:export": "next export -o docs",
"build": "next build",
2019-07-09 15:46:11 +09:00
"dev": "next"
2019-04-21 19:17:15 +09:00
}
}