package.json 6.2 KB
Newer Older
T
Tim Neutkens 已提交
1 2
{
  "name": "next",
J
v10.0.1  
Joe Haddad 已提交
3
  "version": "10.0.1",
T
Tim Neutkens 已提交
4
  "description": "The React Framework",
T
Tim Neutkens 已提交
5 6
  "main": "./dist/server/next.js",
  "license": "MIT",
7 8
  "repository": "vercel/next.js",
  "bugs": "https://github.com/vercel/next.js/issues",
T
Tim Neutkens 已提交
9
  "homepage": "https://nextjs.org",
10
  "types": "types/index.d.ts",
T
Tim Neutkens 已提交
11 12 13
  "files": [
    "dist",
    "app.js",
T
Tim Neutkens 已提交
14
    "app.d.ts",
T
Tim Neutkens 已提交
15
    "babel.js",
T
Tim Neutkens 已提交
16
    "babel.d.ts",
T
Tim Neutkens 已提交
17
    "client.js",
T
Tim Neutkens 已提交
18
    "client.d.ts",
T
Tim Neutkens 已提交
19
    "config.js",
T
Tim Neutkens 已提交
20
    "config.d.ts",
T
Tim Neutkens 已提交
21
    "constants.js",
T
Tim Neutkens 已提交
22
    "constants.d.ts",
23
    "data.js",
T
Tim Neutkens 已提交
24
    "data.d.ts",
T
Tim Neutkens 已提交
25
    "document.js",
T
Tim Neutkens 已提交
26
    "document.d.ts",
T
Tim Neutkens 已提交
27
    "dynamic.js",
T
Tim Neutkens 已提交
28
    "dynamic.d.ts",
T
Tim Neutkens 已提交
29
    "error.js",
T
Tim Neutkens 已提交
30
    "error.d.ts",
T
Tim Neutkens 已提交
31
    "head.js",
T
Tim Neutkens 已提交
32
    "head.d.ts",
33 34
    "image.js",
    "image.d.ts",
T
Tim Neutkens 已提交
35
    "link.js",
T
Tim Neutkens 已提交
36
    "link.d.ts",
37
    "router.js",
T
Tim Neutkens 已提交
38 39
    "router.d.ts",
    "amp.js",
40
    "amp.d.ts",
J
Joe Haddad 已提交
41 42
    "types/index.d.ts",
    "types/global.d.ts"
T
Tim Neutkens 已提交
43 44 45 46 47 48 49
  ],
  "bin": {
    "next": "./dist/bin/next"
  },
  "scripts": {
    "build": "taskr",
    "release": "taskr release",
J
JJ Kasper 已提交
50
    "prepublish": "npm run release && yarn types",
51
    "types": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
52 53
    "typescript": "tsc --noEmit --declaration",
    "ncc-compiled": "taskr ncc"
T
Tim Neutkens 已提交
54 55 56
  },
  "taskr": {
    "requires": [
C
Connor Davis 已提交
57
      "./taskfile-ncc.js",
58 59
      "./taskfile-babel.js",
      "./taskfile-typescript.js"
T
Tim Neutkens 已提交
60 61 62
    ]
  },
  "dependencies": {
63
    "@ampproject/toolbox-optimizer": "2.7.0-alpha.1",
64
    "@babel/code-frame": "7.10.4",
65
    "@babel/core": "7.7.7",
66
    "@babel/plugin-proposal-class-properties": "7.10.4",
67
    "@babel/plugin-proposal-export-namespace-from": "7.10.4",
68 69
    "@babel/plugin-proposal-numeric-separator": "7.10.4",
    "@babel/plugin-proposal-object-rest-spread": "7.11.0",
G
Guy Bedford 已提交
70
    "@babel/plugin-syntax-bigint": "7.8.3",
71
    "@babel/plugin-syntax-dynamic-import": "7.8.3",
B
Bogdan Chadkin 已提交
72
    "@babel/plugin-syntax-jsx": "7.10.4",
73 74 75 76 77 78 79
    "@babel/plugin-transform-modules-commonjs": "7.10.4",
    "@babel/plugin-transform-runtime": "7.11.5",
    "@babel/preset-env": "7.11.5",
    "@babel/preset-react": "7.10.4",
    "@babel/preset-typescript": "7.10.4",
    "@babel/runtime": "7.11.2",
    "@babel/types": "7.11.5",
80
    "@hapi/accept": "5.0.1",
J
v10.0.1  
Joe Haddad 已提交
81 82 83 84
    "@next/env": "10.0.1",
    "@next/polyfill-module": "10.0.1",
    "@next/react-dev-overlay": "10.0.1",
    "@next/react-refresh-utils": "10.0.1",
P
Prateek Bhatnagar 已提交
85
    "ast-types": "0.13.2",
G
Guy Bedford 已提交
86 87
    "babel-plugin-transform-define": "2.0.0",
    "babel-plugin-transform-react-remove-prop-types": "0.4.24",
B
Bogdan Chadkin 已提交
88
    "browserslist": "4.13.0",
89
    "buffer": "5.6.0",
90
    "cacache": "15.0.5",
91
    "caniuse-lite": "^1.0.30001113",
L
Ludovico Fischer 已提交
92
    "chokidar": "3.4.2",
93
    "crypto-browserify": "3.12.0",
94
    "css-loader": "4.3.0",
95
    "cssnano-simple": "1.2.0",
96
    "find-cache-dir": "3.3.1",
97
    "jest-worker": "24.9.0",
T
Tim Neutkens 已提交
98
    "loader-utils": "2.0.0",
99
    "mkdirp": "0.5.3",
100
    "native-url": "0.3.4",
M
Maël Nison 已提交
101
    "neo-async": "2.6.1",
P
Prateek Bhatnagar 已提交
102
    "node-html-parser": "^1.2.19",
103
    "path-browserify": "1.0.1",
J
Joe Haddad 已提交
104
    "pnp-webpack-plugin": "1.6.4",
L
Ludovico Fischer 已提交
105
    "postcss": "8.1.1",
106
    "process": "0.11.10",
J
Joe Haddad 已提交
107
    "prop-types": "15.7.2",
J
Joe Haddad 已提交
108
    "react-is": "16.13.1",
109
    "react-refresh": "0.8.3",
110
    "resolve-url-loader": "3.1.2",
B
Bogdan Chadkin 已提交
111 112
    "sass-loader": "10.0.2",
    "schema-utils": "2.7.1",
113
    "stream-browserify": "3.0.0",
J
Joe Haddad 已提交
114
    "style-loader": "1.2.1",
G
Giuseppe 已提交
115
    "styled-jsx": "3.3.1",
116
    "use-subscription": "1.5.0",
117
    "vm-browserify": "1.1.2",
118
    "watchpack": "2.0.0-beta.13",
119
    "web-vitals": "0.2.4",
120
    "webpack": "4.44.1",
121
    "webpack-sources": "1.4.3"
T
Tim Neutkens 已提交
122 123
  },
  "peerDependencies": {
124 125
    "react": "^16.6.0 || ^17",
    "react-dom": "^16.6.0 || ^17"
T
Tim Neutkens 已提交
126
  },
127 128 129
  "optionalDependencies": {
    "sharp": "0.26.2"
  },
T
Tim Neutkens 已提交
130
  "devDependencies": {
J
v10.0.1  
Joe Haddad 已提交
131
    "@next/polyfill-nomodule": "10.0.1",
T
Tim Neutkens 已提交
132
    "@taskr/clear": "1.1.0",
H
Henrik Wenz 已提交
133 134
    "@taskr/esnext": "1.1.0",
    "@taskr/watch": "1.1.0",
135
    "@types/amphtml-validator": "1.0.0",
136
    "@types/babel__code-frame": "7.0.1",
137 138
    "@types/babel__core": "7.1.7",
    "@types/babel__generator": "7.6.1",
J
Joe Haddad 已提交
139
    "@types/babel__template": "7.0.2",
140
    "@types/babel__traverse": "7.0.10",
J
Joe Haddad 已提交
141
    "@types/ci-info": "2.0.0",
142
    "@types/comment-json": "1.1.1",
143
    "@types/compression": "0.0.36",
T
Tim Neutkens 已提交
144
    "@types/content-type": "1.1.3",
145
    "@types/cookie": "0.3.3",
J
JJ Kasper 已提交
146
    "@types/cross-spawn": "6.0.0",
147
    "@types/debug": "4.1.5",
148 149
    "@types/etag": "1.8.0",
    "@types/fresh": "0.5.0",
J
Joe Haddad 已提交
150
    "@types/json5": "0.0.30",
J
Joe Haddad 已提交
151
    "@types/jsonwebtoken": "8.3.7",
152
    "@types/lodash.curry": "4.1.6",
J
JJ Kasper 已提交
153
    "@types/lru-cache": "5.1.0",
J
Joe Haddad 已提交
154 155
    "@types/nanoid": "2.0.0",
    "@types/node-fetch": "2.3.4",
G
Guy Bedford 已提交
156
    "@types/path-to-regexp": "1.7.0",
J
Joe Haddad 已提交
157 158
    "@types/react": "16.9.17",
    "@types/react-dom": "16.9.4",
T
Tim Neutkens 已提交
159
    "@types/react-is": "16.7.1",
160
    "@types/resolve": "0.0.8",
161
    "@types/semver": "7.3.1",
T
Tim Neutkens 已提交
162
    "@types/send": "0.14.4",
S
Steven 已提交
163
    "@types/sharp": "0.26.0",
T
Tim Neutkens 已提交
164
    "@types/styled-jsx": "2.2.8",
J
Joe Haddad 已提交
165
    "@types/text-table": "0.2.1",
166
    "@types/webpack-sources": "0.1.5",
167
    "@zeit/ncc": "0.22.0",
168
    "amphtml-validator": "1.0.33",
T
Tim Neutkens 已提交
169
    "arg": "4.1.0",
G
Guy Bedford 已提交
170 171
    "async-retry": "1.2.3",
    "async-sema": "3.0.0",
J
Joe Haddad 已提交
172 173
    "babel-loader": "8.1.0",
    "babel-plugin-dynamic-import-node": "2.3.3",
G
Guy Bedford 已提交
174
    "cache-loader": "4.1.0",
G
Guy Bedford 已提交
175
    "chalk": "2.4.2",
J
Joe Haddad 已提交
176
    "ci-info": "watson/ci-info#f43f6a1cefff47fb361c88cf4b943fdbcaafe540",
177
    "comment-json": "3.0.3",
G
Guy Bedford 已提交
178
    "compression": "1.7.4",
G
conf  
Guy Bedford 已提交
179
    "conf": "5.0.0",
G
Guy Bedford 已提交
180
    "content-type": "1.0.4",
J
Joe Haddad 已提交
181
    "cookie": "0.4.1",
182
    "debug": "4.1.1",
G
devalue  
Guy Bedford 已提交
183
    "devalue": "2.0.1",
G
Guy Bedford 已提交
184
    "escape-string-regexp": "2.0.0",
G
etag  
Guy Bedford 已提交
185
    "etag": "1.8.1",
J
Joe Haddad 已提交
186 187
    "file-loader": "6.0.0",
    "find-up": "4.1.0",
G
fresh  
Guy Bedford 已提交
188
    "fresh": "0.5.2",
G
Guy Bedford 已提交
189
    "gzip-size": "5.1.1",
G
Guy Bedford 已提交
190
    "http-proxy": "1.18.0",
G
Guy Bedford 已提交
191
    "ignore-loader": "0.1.2",
G
Guy Bedford 已提交
192
    "is-docker": "2.0.0",
J
Joe Haddad 已提交
193 194
    "is-wsl": "2.2.0",
    "json5": "2.1.3",
G
Guy Bedford 已提交
195
    "jsonwebtoken": "8.5.1",
G
Guy Bedford 已提交
196
    "lodash.curry": "4.1.1",
G
Guy Bedford 已提交
197
    "lru-cache": "5.1.1",
J
Joe Haddad 已提交
198
    "nanoid": "2.0.3",
199
    "node-fetch": "2.6.1",
200
    "ora": "4.0.4",
G
Guy Bedford 已提交
201
    "path-to-regexp": "6.1.0",
202
    "postcss-flexbugs-fixes": "4.2.1",
203
    "postcss-loader": "4.0.3",
G
Guy Bedford 已提交
204
    "postcss-preset-env": "6.7.0",
J
Joe Haddad 已提交
205
    "raw-body": "2.4.1",
G
Guy Bedford 已提交
206
    "recast": "0.18.5",
J
Joe Haddad 已提交
207
    "resolve": "1.11.0",
208
    "semver": "7.3.2",
G
send  
Guy Bedford 已提交
209
    "send": "0.17.1",
G
Guy Bedford 已提交
210
    "source-map": "0.6.1",
G
Guy Bedford 已提交
211
    "string-hash": "1.1.3",
212
    "strip-ansi": "6.0.0",
T
Tim Neutkens 已提交
213
    "taskr": "1.1.0",
S
Sergey Rubanov 已提交
214 215
    "terser": "5.1.0",
    "terser-webpack-plugin": "4.1.0",
216
    "text-table": "0.2.0",
G
Guy Bedford 已提交
217
    "thread-loader": "2.1.3",
218
    "typescript": "3.8.3",
G
Guy Bedford 已提交
219
    "unfetch": "4.1.0",
220
    "unistore": "3.4.1"
221 222
  },
  "engines": {
223
    "node": ">=10.13.0"
T
Tim Neutkens 已提交
224 225
  }
}