1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/package.json

105 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2016-10-05 23:52:50 +00:00
{
"name": "nextjs-project",
"private": true,
"workspaces": [
"packages/*"
2016-10-05 23:52:50 +00:00
],
"scripts": {
"lerna": "lerna",
"dev": "lerna run build --stream --parallel",
"testonly": "jest",
2019-02-11 22:26:42 +00:00
"testall": "yarn check && npm run testonly -- --coverage --forceExit --runInBand --reporters=default --reporters=jest-junit",
"pretest": "npm run lint",
"test": "npm run testall || npm run testall",
"coveralls": "cat ./test/coverage/lcov.info | coveralls",
"lint": "lerna run typescript && standard && standard --parser typescript-eslint-parser --plugin typescript packages/**/*.ts",
2018-12-10 21:05:53 +00:00
"lint-fix": "standard --fix && standard --fix --parser typescript-eslint-parser --plugin typescript packages/**/*.ts",
"prettier": "prettier --single-quote --no-semi --write examples/**/*.js && yarn lint-fix",
"typescript": "lerna run typescript",
"prepublish": "lerna run prepublish",
2019-01-21 15:24:39 +00:00
"publish-canary": "lerna version prerelease --preid canary --force-publish && release --pre",
"publish-stable": "lerna version --force-publish",
"lint-staged": "lint-staged"
2016-10-05 23:52:50 +00:00
},
"pre-commit": "lint-staged",
"lint-staged": {
"examples/**/*.js": [
"prettier --write --single-quote --no-semi",
"standard --fix",
"git add"
],
"*.js": [
"standard --fix",
"git add"
],
"*.{ts,tsx}": [
"tslint -c tslint.json --fix",
"git add"
],
"packages/**/bin/*": [
"standard --fix",
"git add"
]
},
2016-10-25 18:47:03 +00: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 20:13:35 +00:00
"**/node_modules/**",
"packages/next/build/webpack/plugins/terser-webpack-plugin/**",
"examples/with-ioc/**",
"examples/with-kea/**",
"examples/with-mobx/**"
]
2016-10-25 18:47:03 +00:00
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@zeit/next-css": "1.0.2-canary.2",
"@zeit/next-sass": "1.0.2-canary.2",
"@zeit/next-typescript": "1.1.2-canary.0",
"amphtml-validator": "1.0.23",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
2017-02-16 22:53:39 +00:00
"cheerio": "0.22.0",
"chromedriver": "2.42.0",
"clone": "2.1.1",
"coveralls": "3.0.2",
2019-02-11 22:26:42 +00:00
"eslint": "5.13.0",
"eslint-plugin-typescript": "0.14.0",
"express": "4.16.3",
2017-09-27 18:11:02 +00:00
"fkill": "5.1.0",
"get-port": "3.2.0",
"isomorphic-unfetch": "3.0.0",
"jest-cli": "23.6.0",
"jest-junit": "^5.0.0",
"lerna": "^3.4.0",
2017-09-27 18:11:02 +00:00
"lint-staged": "4.2.3",
"mkdirp": "0.5.1",
2017-09-27 18:11:02 +00:00
"node-fetch": "1.7.3",
"node-notifier": "5.1.2",
"node-sass": "4.9.2",
"pre-commit": "1.2.2",
"prettier": "1.15.3",
"react": "16.8.0",
"react-dom": "16.8.0",
2019-01-21 15:24:39 +00:00
"release": "5.0.3",
2019-02-11 22:26:42 +00:00
"request-promise-core": "1.1.1",
"rimraf": "2.6.2",
"standard": "11.0.1",
2017-09-27 18:11:02 +00:00
"taskr": "1.1.0",
"tslint": "5.12.0",
"typescript": "3.1.1",
"typescript-eslint-parser": "21.0.1",
"wait-port": "0.2.2",
"wd": "1.10.3",
"webpack-bundle-analyzer": "3.0.3"
},
"engines": {
"node": ">= 8.0.0"
2016-10-10 04:18:56 +00:00
}
2016-10-05 23:52:50 +00:00
}