portfolio/package.json

41 lines
1.3 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
2018-03-28 16:03:04 +02:00
"node-sass-chokidar": "^1.2.2",
2018-03-18 20:39:18 +01:00
"npm-run-all": "^4.1.2",
2018-04-02 16:57:30 +02:00
"react": "^16.3.0",
"react-dom": "^16.3.0",
2018-04-03 23:17:16 +02:00
"react-helmet": "^5.2.0",
2018-03-25 23:40:10 +02:00
"react-lazyload": "^2.3.0",
2018-04-05 00:11:51 +02:00
"react-markdown": "^3.3.0",
2018-03-18 20:39:18 +01:00
"react-router-dom": "^4.2.2",
2018-03-21 18:56:01 +01:00
"react-scripts": "1.1.1",
2018-04-02 16:57:30 +02:00
"react-transition-group": "^2.3.0"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
"babel-eslint": "^8.2.2",
2018-03-25 16:32:49 +02:00
"eslint": "^4.19.1",
2018-03-18 20:39:18 +01:00
"eslint-plugin-react": "^7.7.0",
2018-03-21 18:56:01 +01:00
"jest-cli": "^22.4.3",
2018-04-02 16:57:30 +02:00
"react-snap": "^1.12.0",
"stylelint": "^9.2.0",
2018-03-21 18:56:01 +01:00
"stylelint-config-standard": "^18.2.0"
2018-03-18 20:39:18 +01:00
},
"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",
2018-03-27 10:00:52 +02:00
"eject": "react-scripts eject",
"postbuild": "react-snap"
2018-03-18 20:39:18 +01:00
}
}