mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-13 16:45:12 +01:00
40 lines
1.3 KiB
JSON
40 lines
1.3 KiB
JSON
{
|
|
"name": "portfolio",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"node-sass-chokidar": "^1.2.2",
|
|
"npm-run-all": "^4.1.2",
|
|
"react": "^16.3.0",
|
|
"react-dom": "^16.3.0",
|
|
"react-helmet": "^5.2.0",
|
|
"react-lazyload": "^2.3.0",
|
|
"react-router-dom": "^4.2.2",
|
|
"react-scripts": "1.1.1",
|
|
"react-transition-group": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.2",
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-react": "^7.7.0",
|
|
"jest-cli": "^22.4.3",
|
|
"react-snap": "^1.12.0",
|
|
"stylelint": "^9.2.0",
|
|
"stylelint-config-standard": "^18.2.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",
|
|
"postbuild": "react-snap"
|
|
}
|
|
}
|