tissue/package.json

54 lines
1.9 KiB
JSON
Raw Normal View History

2017-08-27 04:44:53 +09:00
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"stylelint": "stylelint resources/assets/sass/**/*"
2017-08-27 04:44:53 +09:00
},
"devDependencies": {
2019-05-24 01:08:47 +09:00
"@types/jquery": "^3.3.29",
2019-03-10 16:16:25 +09:00
"bootstrap": "^4.3.1",
2019-02-17 01:18:36 +09:00
"cal-heatmap": "^3.3.10",
"chart.js": "^2.7.1",
"cross-env": "^5.2.0",
"husky": "^1.3.1",
2019-02-17 01:18:36 +09:00
"jquery": "^3.2.1",
"js-cookie": "^2.2.0",
2019-02-17 01:13:49 +09:00
"laravel-mix": "^4.0.0",
2019-03-08 06:52:29 +09:00
"laravel-mix-bundle-analyzer": "^1.0.2",
"lint-staged": "^8.1.5",
2019-02-17 01:18:36 +09:00
"open-iconic": "^1.1.1",
"popper.js": "^1.14.7",
"resolve-url-loader": "^2.3.1",
"sass": "^1.17.0",
"sass-loader": "^7.1.0",
2019-03-10 18:10:20 +09:00
"stylelint": "^9.10.1",
2019-03-10 18:21:15 +09:00
"stylelint-config-recess-order": "^2.0.1",
2019-05-24 01:08:47 +09:00
"ts-loader": "^6.0.1",
"typescript": "^3.4.5",
2019-05-24 00:33:48 +09:00
"vue": "^2.6.10",
2019-06-01 00:40:35 +09:00
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.1.1",
"vue-template-compiler": "^2.6.10"
2019-03-10 18:21:15 +09:00
},
"stylelint": {
"extends": "stylelint-config-recess-order"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
2019-05-24 00:33:48 +09:00
"*.{css,scss}": [
"stylelint --fix",
"git add"
]
2017-08-27 04:44:53 +09:00
}
}