forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "nextjs-project",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lerna": "lerna",
"dev": "lerna run build --stream --parallel",
"dev2": "while true; do yarn --check-files && yarn dev; done",
"testonly": "jest",
"testall": "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",
"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",
"prettier-fix": "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",
"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"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"prettier --write",
"standard --fix",
"git add"
],
"*.tsx": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"packages/**/*.ts",
"**/*.d.ts",
"**/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"
],
"globals": [
"performance"
]
},
"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",
"@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",
"async-sema": "3.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"browserstack-local": "1.4.0",
"cheerio": "0.22.0",
"chromedriver": "76.0.1",
"clone": "2.1.2",
"coveralls": "3.0.3",
"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",
"firebase": "6.3.4",
"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",
"moment": "^2.24.0",
"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.10.2",
"react-dom": "16.10.2",
"react-ssr-prepass": "1.0.7",
"release": "6.0.1",
"request-promise-core": "1.1.2",
"rimraf": "2.6.3",
"standard": "12.0.1",
"taskr": "1.1.0",
"tree-kill": "1.2.1",
"typescript": "3.5.1",
"typescript-eslint-parser": "22.0.0",
"wait-port": "0.2.2",
"wd": "1.11.3",
"webpack-bundle-analyzer": "3.3.2"
},
"resolutions": {
"browserslist": "^4.7.1",
"caniuse-lite": "^1.0.30001002"
},
"engines": {
"node": ">= 8.0.0"
}
}