rsnext/package.json

116 lines
3.6 KiB
JSON
Raw Normal View History

2016-10-06 01:52:50 +02:00
{
"name": "nextjs-project",
"private": true,
"workspaces": [
"packages/*"
2016-10-06 01:52:50 +02:00
],
"scripts": {
"lerna": "lerna",
"dev": "lerna run build --stream --parallel",
2019-07-10 16:45:38 +02:00
"dev2": "while true; do yarn --check-files && yarn dev; done",
"testonly": "jest",
2019-06-28 15:09:27 +02:00
"testall": "yarn check && yarn run testonly -- --ci --reporters=default --reporters=jest-junit --forceExit --runInBand",
"pretest": "yarn run lint",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f",
"test-take2": "yarn git-reset && yarn git-clean && yarn testall",
"test": "yarn run testall || yarn run test-take2",
2019-05-29 01:06:13 +02:00
"lint": "lerna run typescript && standard && standard --parser typescript-eslint-parser --plugin typescript \"packages/**/*.ts\"",
"lint-fix": "standard --fix && standard --fix --parser typescript-eslint-parser --plugin typescript \"packages/**/*.ts\"",
"prettier": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\" && yarn lint-fix",
"types": "lerna run types --stream",
"typescript": "lerna run typescript",
"prepublish": "lerna run prepublish",
2019-01-21 16:24:39 +01:00
"publish-canary": "lerna version prerelease --preid canary --force-publish && release --pre",
"publish-stable": "lerna version --force-publish",
"lint-staged": "lint-staged",
"next": "./packages/next/dist/bin/next"
2016-10-06 01:52:50 +02:00
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"prettier --write",
"standard --fix",
"git add"
],
"*.tsx": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
},
2016-10-25 20:47:03 +02:00
"standard": {
"parser": "babel-eslint",
"ignore": [
"packages/**/*.ts",
"**/*.d.ts",
Merge v3-beta into master (#2809) * Add examples/with-redux-code-splitting. (#2721) * #1757 Relay Modern Example (#2696) * Add ReasonML example (#2640) * Add ReasonML example * Add a gitignore specifically for the reasonml example * Allow custom className for <Main /> (#2802) * 3.0.2 * Remove beta information from the README. * 3.0.3 * Remove unnecessary lookup in example with emotion (#2731) * Document SCSS/Less (#2742) * Document SCSS/Less * Add missing word * Add docs for examples dir * Add extra example * uppercase J * Add with pkg example (#2751) * Add custom server micro example (#2750) * Ease running multiple examples at the same time with process.env.PORT (#2753) * Add line-height rule for error page h2 (#2761) * Add support for fetching multiple translation files (#2743) * Add support for fetching multiple translation files * Cleanup * Clear missed interval (#2611) * clear missed interval * remove trailing whitespace * Relay Modern Example (#1757) (#2773) * Simplification of Relay Modern Example (#1757) (#2776) * Use deterministic names for dynamic import (#2788) * Always use the same name for the same dynamic import. * Add unit tests for the modulePath generation. * Allow tests to run correctly on Windows. * Make the chunk name a bit pretty. * Fix tests to run on Windows. * 3.0.4 * Revert "Make the chunk name a bit pretty." (#2792) This reverts commit 0c9e8cf2271955e74ab9f752b5869b98c1dc60f9. * 3.0.5 * Use _ as the divider for dynamic import name splitter. (#2793) Using - gives us some weird webpack errors. * 3.0.6 * next/dynamic Error Message Tweaks (#2798) * Fixed issue (#2804) https://github.com/zeit/next.js/issues/2800 * docs(material-ui): move the source code to Material-UI repository (#2808)
2017-08-27 22:13:35 +02:00
"**/node_modules/**",
"packages/next/build/webpack/plugins/terser-webpack-plugin/**",
"examples/with-ioc/**",
"examples/with-kea/**",
"examples/with-mobx/**",
"test/integration/client-navigation/pages/throw-undefined.js"
]
2016-10-25 20:47:03 +02:00
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@mdx-js/loader": "0.18.0",
"@types/jest": "24.0.13",
2019-04-02 16:09:34 +02:00
"@types/string-hash": "1.1.1",
"@zeit/next-css": "1.0.2-canary.2",
"@zeit/next-sass": "1.0.2-canary.2",
"@zeit/next-typescript": "1.1.2-canary.0",
"abort-controller": "3.0.0",
"amphtml-validator": "1.0.23",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"browserstack-local": "1.4.0",
2017-02-16 23:53:39 +01:00
"cheerio": "0.22.0",
2019-08-03 22:44:05 +02:00
"chromedriver": "75.1.0",
"clone": "2.1.2",
"coveralls": "3.0.3",
2019-02-26 21:57:32 +01:00
"cross-spawn": "6.0.5",
"eslint": "5.16.0",
"eslint-plugin-typescript": "0.14.0",
"execa": "2.0.3",
"express": "4.17.0",
"faunadb": "2.6.1",
"fs-extra": "7.0.1",
"get-port": "5.0.0",
"isomorphic-unfetch": "3.0.0",
"jest-cli": "24.8.0",
"jest-junit": "6.4.0",
"lerna": "3.14.1",
"lint-staged": "8.1.7",
"mkdirp": "0.5.1",
"node-fetch": "2.6.0",
"node-notifier": "5.4.0",
"node-sass": "4.12.0",
"pre-commit": "1.2.2",
"prettier": "1.17.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-ssr-prepass": "1.0.5",
"release": "6.0.1",
"request-promise-core": "1.1.2",
"rimraf": "2.6.3",
"standard": "12.0.1",
2017-09-27 20:11:02 +02:00
"taskr": "1.1.0",
"tree-kill": "1.2.1",
2019-05-31 13:36:59 +02:00
"typescript": "3.5.1",
"typescript-eslint-parser": "22.0.0",
"wait-port": "0.2.2",
2019-08-03 22:44:05 +02:00
"wd": "1.11.3",
"webpack-bundle-analyzer": "3.3.2"
},
"engines": {
"node": ">= 8.0.0"
2016-10-10 06:18:56 +02:00
}
2016-10-06 01:52:50 +02:00
}