package.json 5.9 KB
Newer Older
T
Tim Neutkens 已提交
1 2
{
  "name": "next",
T
Tim Neutkens 已提交
3
  "version": "9.3.5-canary.3",
T
Tim Neutkens 已提交
4
  "description": "The React Framework",
T
Tim Neutkens 已提交
5 6 7 8
  "main": "./dist/server/next.js",
  "license": "MIT",
  "repository": "zeit/next.js",
  "bugs": "https://github.com/zeit/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",
T
Tim Neutkens 已提交
33
    "link.js",
T
Tim Neutkens 已提交
34
    "link.d.ts",
35
    "router.js",
T
Tim Neutkens 已提交
36 37
    "router.d.ts",
    "amp.js",
38
    "amp.d.ts",
J
Joe Haddad 已提交
39 40
    "types/index.d.ts",
    "types/global.d.ts"
T
Tim Neutkens 已提交
41 42 43 44 45 46 47
  ],
  "bin": {
    "next": "./dist/bin/next"
  },
  "scripts": {
    "build": "taskr",
    "release": "taskr release",
J
JJ Kasper 已提交
48
    "prepublish": "npm run release && yarn types",
49 50
    "types": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
    "typescript": "tsc --noEmit --declaration"
T
Tim Neutkens 已提交
51 52 53
  },
  "taskr": {
    "requires": [
C
Connor Davis 已提交
54
      "./taskfile-ncc.js",
55 56
      "./taskfile-babel.js",
      "./taskfile-typescript.js"
T
Tim Neutkens 已提交
57 58 59
    ]
  },
  "dependencies": {
60
    "@ampproject/toolbox-optimizer": "2.0.1",
G
Guy Bedford 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74
    "@babel/core": "7.7.2",
    "@babel/plugin-proposal-class-properties": "7.7.0",
    "@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
    "@babel/plugin-proposal-numeric-separator": "7.8.3",
    "@babel/plugin-proposal-object-rest-spread": "7.6.2",
    "@babel/plugin-proposal-optional-chaining": "7.7.4",
    "@babel/plugin-syntax-bigint": "7.8.3",
    "@babel/plugin-syntax-dynamic-import": "7.2.0",
    "@babel/plugin-transform-modules-commonjs": "7.7.0",
    "@babel/plugin-transform-runtime": "7.6.2",
    "@babel/preset-env": "7.7.1",
    "@babel/preset-modules": "0.1.1",
    "@babel/preset-react": "7.7.0",
    "@babel/preset-typescript": "7.7.2",
J
Joe Haddad 已提交
75
    "@babel/runtime": "7.7.2",
G
Guy Bedford 已提交
76 77 78 79 80
    "@babel/types": "7.7.4",
    "babel-plugin-syntax-jsx": "6.18.0",
    "babel-plugin-transform-define": "2.0.0",
    "babel-plugin-transform-react-remove-prop-types": "0.4.24",
    "browserslist": "4.8.3",
81
    "css-loader": "3.3.0",
82
    "find-cache-dir": "3.3.1",
83
    "fork-ts-checker-webpack-plugin": "3.1.1",
84
    "jest-worker": "24.9.0",
T
Tim Neutkens 已提交
85
    "loader-utils": "2.0.0",
J
Joe Haddad 已提交
86
    "mini-css-extract-plugin": "0.8.0",
87
    "mkdirp": "^0.5.3",
88
    "native-url": "0.3.1",
89
    "pnp-webpack-plugin": "1.5.0",
G
Guy Bedford 已提交
90
    "postcss": "7.0.27",
J
Joe Haddad 已提交
91
    "prop-types": "15.7.2",
T
Tim Neutkens 已提交
92
    "prop-types-exact": "1.2.0",
93
    "react-is": "16.8.6",
94 95
    "resolve-url-loader": "3.1.1",
    "sass-loader": "8.0.2",
J
Joe Haddad 已提交
96
    "style-loader": "1.0.0",
G
Giuseppe 已提交
97
    "styled-jsx": "3.2.5",
98
    "use-subscription": "1.1.1",
99
    "watchpack": "2.0.0-beta.13",
T
Tim Neutkens 已提交
100
    "webpack": "4.42.0",
101
    "webpack-sources": "1.4.3"
T
Tim Neutkens 已提交
102 103
  },
  "peerDependencies": {
104 105
    "react": "^16.6.0",
    "react-dom": "^16.6.0"
T
Tim Neutkens 已提交
106 107
  },
  "devDependencies": {
T
Tim Neutkens 已提交
108
    "@next/polyfill-nomodule": "9.3.5-canary.3",
T
Tim Neutkens 已提交
109
    "@taskr/clear": "1.1.0",
H
Henrik Wenz 已提交
110 111
    "@taskr/esnext": "1.1.0",
    "@taskr/watch": "1.1.0",
112
    "@types/amphtml-validator": "1.0.0",
J
Joe Haddad 已提交
113 114
    "@types/babel__core": "7.1.3",
    "@types/babel__generator": "7.6.0",
J
Joe Haddad 已提交
115
    "@types/babel__template": "7.0.2",
J
Joe Haddad 已提交
116
    "@types/babel__traverse": "7.0.8",
J
Joe Haddad 已提交
117
    "@types/ci-info": "2.0.0",
118
    "@types/compression": "0.0.36",
T
Tim Neutkens 已提交
119
    "@types/content-type": "1.1.3",
120
    "@types/cookie": "0.3.3",
J
JJ Kasper 已提交
121
    "@types/cross-spawn": "6.0.0",
122
    "@types/dotenv": "8.2.0",
123
    "@types/etag": "1.8.0",
124
    "@types/find-up": "2.1.1",
125
    "@types/fresh": "0.5.0",
J
Joe Haddad 已提交
126
    "@types/json5": "0.0.30",
J
Joe Haddad 已提交
127
    "@types/jsonwebtoken": "8.3.7",
T
Tim Neutkens 已提交
128
    "@types/loader-utils": "1.1.3",
129
    "@types/lodash.curry": "4.1.6",
J
JJ Kasper 已提交
130
    "@types/lru-cache": "5.1.0",
J
Joe Haddad 已提交
131
    "@types/mini-css-extract-plugin": "0.8.0",
J
Joe Haddad 已提交
132 133
    "@types/nanoid": "2.0.0",
    "@types/node-fetch": "2.3.4",
G
Guy Bedford 已提交
134
    "@types/path-to-regexp": "1.7.0",
J
Joe Haddad 已提交
135 136
    "@types/react": "16.9.17",
    "@types/react-dom": "16.9.4",
T
Tim Neutkens 已提交
137
    "@types/react-is": "16.7.1",
138
    "@types/resolve": "0.0.8",
T
Tim Neutkens 已提交
139
    "@types/send": "0.14.4",
T
Tim Neutkens 已提交
140
    "@types/styled-jsx": "2.2.8",
J
Joe Haddad 已提交
141
    "@types/text-table": "0.2.1",
142 143
    "@types/webpack-dev-middleware": "2.0.3",
    "@types/webpack-hot-middleware": "2.16.5",
144
    "@types/webpack-sources": "0.1.5",
145
    "@zeit/ncc": "0.22.0",
G
Guy Bedford 已提交
146
    "amphtml-validator": "1.0.30",
T
Tim Neutkens 已提交
147
    "arg": "4.1.0",
148
    "ast-types": "0.13.2",
G
Guy Bedford 已提交
149 150
    "async-retry": "1.2.3",
    "async-sema": "3.0.0",
G
Guy Bedford 已提交
151
    "autodll-webpack-plugin": "0.4.2",
G
Guy Bedford 已提交
152
    "babel-loader": "8.0.6",
G
Guy Bedford 已提交
153
    "babel-plugin-dynamic-import-node": "2.3.0",
G
Guy Bedford 已提交
154
    "cache-loader": "4.1.0",
G
Guy Bedford 已提交
155 156
    "chalk": "2.4.2",
    "ci-info": "2.0.0",
G
Guy Bedford 已提交
157
    "compression": "1.7.4",
G
conf  
Guy Bedford 已提交
158
    "conf": "5.0.0",
G
Guy Bedford 已提交
159
    "content-type": "1.0.4",
G
cookie  
Guy Bedford 已提交
160
    "cookie": "0.4.0",
G
Guy Bedford 已提交
161
    "cssnano-simple": "1.0.0",
G
devalue  
Guy Bedford 已提交
162
    "devalue": "2.0.1",
163 164
    "dotenv": "8.2.0",
    "dotenv-expand": "5.1.0",
G
Guy Bedford 已提交
165
    "escape-string-regexp": "2.0.0",
G
etag  
Guy Bedford 已提交
166
    "etag": "1.8.1",
G
Guy Bedford 已提交
167
    "file-loader": "4.2.0",
G
Guy Bedford 已提交
168
    "finally-polyfill": "0.1.0",
G
find-up  
Guy Bedford 已提交
169
    "find-up": "4.0.0",
G
fresh  
Guy Bedford 已提交
170
    "fresh": "0.5.2",
G
Guy Bedford 已提交
171
    "gzip-size": "5.1.1",
G
Guy Bedford 已提交
172
    "http-proxy": "1.18.0",
G
Guy Bedford 已提交
173
    "ignore-loader": "0.1.2",
G
Guy Bedford 已提交
174 175
    "is-docker": "2.0.0",
    "is-wsl": "2.1.1",
G
json5  
Guy Bedford 已提交
176
    "json5": "2.1.2",
G
Guy Bedford 已提交
177
    "jsonwebtoken": "8.5.1",
G
Guy Bedford 已提交
178
    "launch-editor": "2.2.1",
G
Guy Bedford 已提交
179
    "lodash.curry": "4.1.1",
G
Guy Bedford 已提交
180
    "lru-cache": "5.1.1",
J
Joe Haddad 已提交
181
    "nanoid": "2.0.3",
G
Guy Bedford 已提交
182 183
    "node-fetch": "2.6.0",
    "ora": "3.4.0",
G
Guy Bedford 已提交
184
    "path-to-regexp": "6.1.0",
G
Guy Bedford 已提交
185 186 187
    "postcss-flexbugs-fixes": "4.2.0",
    "postcss-loader": "3.0.0",
    "postcss-preset-env": "6.7.0",
G
Guy Bedford 已提交
188
    "raw-body": "2.4.0",
G
Guy Bedford 已提交
189
    "react-error-overlay": "5.1.6",
G
Guy Bedford 已提交
190
    "recast": "0.18.5",
J
Joe Haddad 已提交
191
    "resolve": "1.11.0",
G
send  
Guy Bedford 已提交
192
    "send": "0.17.1",
G
Guy Bedford 已提交
193
    "source-map": "0.6.1",
G
Guy Bedford 已提交
194 195
    "string-hash": "1.1.3",
    "strip-ansi": "5.2.0",
T
Tim Neutkens 已提交
196
    "taskr": "1.1.0",
G
terser  
Guy Bedford 已提交
197
    "terser": "4.4.2",
198
    "text-table": "0.2.0",
G
Guy Bedford 已提交
199
    "thread-loader": "2.1.3",
200
    "typescript": "3.7.3",
G
Guy Bedford 已提交
201
    "unfetch": "4.1.0",
202 203 204
    "unistore": "3.4.1",
    "webpack-dev-middleware": "3.7.0",
    "webpack-hot-middleware": "2.25.0"
205 206
  },
  "engines": {
207
    "node": ">=10.13.0"
T
Tim Neutkens 已提交
208 209
  }
}