mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-13 16:45:12 +01:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "portfolio",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"node-sass-chokidar": "^1.1.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0",
|
|
"react-router-dom": "^4.2.2",
|
|
"react-scripts": "1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.2",
|
|
"eslint": "^4.19.0",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"jest-cli": "^22.1.4",
|
|
"stylelint": "^9.0.0",
|
|
"stylelint-config-standard": "^18.1.0"
|
|
},
|
|
"scripts": {
|
|
"lint:js": "eslint ./{src,public}/**/*.js",
|
|
"lint:css": "stylelint ./src/**/*.scss",
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
"build-css": "node-sass-chokidar --include-path src/stylesheets/ src/ -o src/",
|
|
"watch-css": "npm run build-css && node-sass-chokidar --include-path src/stylesheets/ src/ -o src/ --watch --recursive",
|
|
"start-js": "react-scripts start",
|
|
"start": "npm-run-all -p watch-css start-js",
|
|
"build-js": "react-scripts build",
|
|
"build": "npm-run-all build-css build-js",
|
|
"test": "npm run lint && react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject"
|
|
}
|
|
}
|