36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"name": "mat",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "npm-run-all -p watch:*",
|
|
"build:sass": "node-sass --importer node_modules/node-sass-globbing/index.js ./source/sass/application.scss static/css/application.css --output-style compressed",
|
|
"build:js": "rollup -c -m",
|
|
"build": "npm-run-all build:*",
|
|
"watch:sass": "watch 'npm run build:sass' ./source/stylesheet/",
|
|
"watch:js": "watch 'npm run build:js' ./source/javascript/",
|
|
"eslint": "./node_modules/.bin/eslint source/javascript/**/*.js",
|
|
"safetyupdate": "echo '{}' > safety-update.config.json && npx npm-safety-updater patch minor --only-dev"
|
|
},
|
|
"author": "Daisuke KONISHI",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "7.16.7",
|
|
"@babel/preset-env": "7.16.8",
|
|
"@rollup/plugin-babel": "5.3.0",
|
|
"@rollup/plugin-node-resolve": "13.1.3",
|
|
"eslint": "8.6.0",
|
|
"eslint-config-standard": "11.0.0",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-promise": "6.0.0",
|
|
"eslint-plugin-standard": "4.1.0",
|
|
"node-sass": "7.0.3",
|
|
"node-sass-globbing": "0.0.23",
|
|
"npm-run-all": "4.1.5",
|
|
"rollup": "2.63.0",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"watch": "1.0.2"
|
|
}
|
|
}
|