kana/package.json

61 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2016-07-27 16:30:25 +00:00
{
"name": "kanaquiz",
2018-11-16 22:15:20 +00:00
"version": "2.1.0",
2016-07-27 16:30:25 +00:00
"description": "Application for studying hiragana & katakana characters.",
"main": "index.js",
"scripts": {
2016-07-27 17:13:08 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
2019-12-06 12:51:20 +00:00
"start": "webpack-dev-server --open --env.mode development --host 0.0.0.0 --config webpack.config.js",
"mobile": "webpack-dev-server --open --env.mode development --host 0.0.0.0 --public 192.168.1.8:8080",
"build": "webpack --env.mode production --config webpack.config.prod.js"
2016-07-27 16:30:25 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/anzzstuff/kanaquiz.git"
},
"author": "Antti Pilto",
"license": "MIT",
"bugs": {
"url": "https://github.com/anzzstuff/kanaquiz/issues"
},
2016-07-27 17:13:08 +00:00
"homepage": "https://github.com/anzzstuff/kanaquiz#readme",
2018-11-16 23:19:55 +00:00
"browserslist": [
2018-11-17 14:09:14 +00:00
">0.25%",
2018-11-16 23:19:55 +00:00
"not dead"
],
2016-07-27 17:13:08 +00:00
"devDependencies": {
2018-11-16 22:13:25 +00:00
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
2018-11-16 18:06:14 +00:00
"@babel/preset-react": "^7.0.0",
2018-11-16 22:13:25 +00:00
"autoprefixer": "^9.3.1",
2018-11-16 18:06:14 +00:00
"babel-loader": "^8.0.4",
2018-11-16 22:13:25 +00:00
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
2018-11-16 18:06:14 +00:00
"html-webpack-plugin": "^3.2.0",
2019-12-06 12:51:20 +00:00
"http-server": "^0.12.0",
2018-11-16 22:13:25 +00:00
"postcss": "^7.0.5",
"postcss-loader": "^3.0.0",
"precss": "^3.1.2",
"react-hot-loader": "^4.3.12",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
2018-11-16 18:06:14 +00:00
"webpack-cli": "^3.1.2",
2019-12-06 12:51:20 +00:00
"webpack-dev-server": "^3.9.0",
"workbox-webpack-plugin": "^4.3.1"
2016-07-27 17:13:08 +00:00
},
"dependencies": {
2018-11-16 23:19:55 +00:00
"@babel/polyfill": "^7.0.0",
2019-12-06 12:55:34 +00:00
"lodash": "^4.17.15",
"lodash.template": "^4.5.0",
2018-11-16 22:13:25 +00:00
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-toggle-switch": "^3.0.4",
2019-12-06 12:51:20 +00:00
"react-transition-group": "^2.5.0",
2019-12-06 12:57:00 +00:00
"serialize-javascript": "^2.1.1",
2019-12-06 12:51:20 +00:00
"workbox-window": "^4.3.1"
2016-07-27 17:13:08 +00:00
}
2016-07-27 16:30:25 +00:00
}