package.json 5.8 KB
Newer Older
T
Tim Neutkens 已提交
1 2
{
  "name": "next",
J
Joe Haddad 已提交
3
  "version": "9.3.4-canary.0",
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",
J
Joe Haddad 已提交
61
    "@babel/runtime": "7.7.2",
J
Joe Haddad 已提交
62
    "@next/polyfill-nomodule": "9.3.4-canary.0",
63
    "autodll-webpack-plugin": "0.4.2",
64
    "cache-loader": "4.1.0",
J
Joe Haddad 已提交
65
    "conf": "5.0.0",
66
    "css-loader": "3.3.0",
J
Joe Haddad 已提交
67
    "cssnano-simple": "1.0.0",
J
Joe Haddad 已提交
68
    "file-loader": "4.2.0",
69
    "finally-polyfill": "0.1.0",
J
Joe Haddad 已提交
70
    "find-up": "4.0.0",
71
    "fork-ts-checker-webpack-plugin": "3.1.1",
J
Joe Haddad 已提交
72
    "ignore-loader": "0.1.2",
73
    "jest-worker": "24.9.0",
T
Tim Neutkens 已提交
74
    "loader-utils": "2.0.0",
J
Joe Haddad 已提交
75
    "mini-css-extract-plugin": "0.8.0",
76
    "native-url": "0.2.6",
J
Joe Haddad 已提交
77
    "path-to-regexp": "6.1.0",
78
    "pnp-webpack-plugin": "1.5.0",
J
Joe Haddad 已提交
79
    "postcss-flexbugs-fixes": "4.2.0",
J
Joe Haddad 已提交
80 81
    "postcss-loader": "3.0.0",
    "postcss-preset-env": "6.7.0",
J
Joe Haddad 已提交
82
    "prop-types": "15.7.2",
T
Tim Neutkens 已提交
83
    "prop-types-exact": "1.2.0",
J
Joe Haddad 已提交
84
    "react-error-overlay": "5.1.6",
85
    "react-is": "16.8.6",
86 87
    "resolve-url-loader": "3.1.1",
    "sass-loader": "8.0.2",
J
Joe Haddad 已提交
88
    "style-loader": "1.0.0",
G
Giuseppe 已提交
89
    "styled-jsx": "3.2.5",
90
    "thread-loader": "2.1.3",
91
    "unfetch": "4.1.0",
T
Tim Neutkens 已提交
92
    "url": "0.11.0",
93
    "use-subscription": "1.1.1",
94
    "watchpack": "2.0.0-beta.13",
T
Tim Neutkens 已提交
95
    "webpack": "4.42.0",
96 97
    "webpack-dev-middleware": "3.7.0",
    "webpack-hot-middleware": "2.25.0",
98
    "webpack-sources": "1.4.3"
T
Tim Neutkens 已提交
99 100
  },
  "peerDependencies": {
101 102
    "react": "^16.6.0",
    "react-dom": "^16.6.0"
T
Tim Neutkens 已提交
103 104
  },
  "devDependencies": {
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    "@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",
    "@babel/types": "7.7.4",
T
Tim Neutkens 已提交
120
    "@taskr/clear": "1.1.0",
H
Henrik Wenz 已提交
121 122
    "@taskr/esnext": "1.1.0",
    "@taskr/watch": "1.1.0",
123
    "@types/amphtml-validator": "1.0.0",
J
Joe Haddad 已提交
124 125
    "@types/babel__core": "7.1.3",
    "@types/babel__generator": "7.6.0",
J
Joe Haddad 已提交
126
    "@types/babel__template": "7.0.2",
J
Joe Haddad 已提交
127
    "@types/babel__traverse": "7.0.8",
J
Joe Haddad 已提交
128
    "@types/ci-info": "2.0.0",
129
    "@types/compression": "0.0.36",
T
Tim Neutkens 已提交
130 131
    "@types/content-type": "1.1.3",
    "@types/cookie": "0.3.2",
J
JJ Kasper 已提交
132
    "@types/cross-spawn": "6.0.0",
133
    "@types/dotenv": "8.2.0",
134
    "@types/etag": "1.8.0",
135
    "@types/find-up": "2.1.1",
136
    "@types/fresh": "0.5.0",
J
Joe Haddad 已提交
137
    "@types/json5": "0.0.30",
J
Joe Haddad 已提交
138
    "@types/jsonwebtoken": "8.3.7",
T
Tim Neutkens 已提交
139
    "@types/loader-utils": "1.1.3",
140
    "@types/lodash.curry": "4.1.6",
J
JJ Kasper 已提交
141
    "@types/lru-cache": "5.1.0",
J
Joe Haddad 已提交
142
    "@types/mini-css-extract-plugin": "0.8.0",
J
Joe Haddad 已提交
143 144
    "@types/nanoid": "2.0.0",
    "@types/node-fetch": "2.3.4",
J
Joe Haddad 已提交
145 146
    "@types/react": "16.9.17",
    "@types/react-dom": "16.9.4",
T
Tim Neutkens 已提交
147
    "@types/react-is": "16.7.1",
148
    "@types/resolve": "0.0.8",
T
Tim Neutkens 已提交
149
    "@types/send": "0.14.4",
T
Tim Neutkens 已提交
150
    "@types/styled-jsx": "2.2.8",
J
Joe Haddad 已提交
151
    "@types/text-table": "0.2.1",
152 153
    "@types/webpack-dev-middleware": "2.0.3",
    "@types/webpack-hot-middleware": "2.16.5",
154
    "@types/webpack-sources": "0.1.5",
155
    "@zeit/ncc": "0.22.0",
G
Guy Bedford 已提交
156
    "amphtml-validator": "1.0.30",
T
Tim Neutkens 已提交
157
    "arg": "4.1.0",
158
    "ast-types": "0.13.2",
G
Guy Bedford 已提交
159 160
    "async-retry": "1.2.3",
    "async-sema": "3.0.0",
161
    "babel-loader": "8.0.6",
J
Joe Haddad 已提交
162
    "babel-plugin-dynamic-import-node": "2.3.0",
163 164 165
    "babel-plugin-syntax-jsx": "6.18.0",
    "babel-plugin-transform-define": "2.0.0",
    "babel-plugin-transform-react-remove-prop-types": "0.4.24",
G
Guy Bedford 已提交
166
    "browserslist": "4.8.3",
G
Guy Bedford 已提交
167 168
    "chalk": "2.4.2",
    "ci-info": "2.0.0",
G
Guy Bedford 已提交
169 170
    "compression": "1.7.4",
    "content-type": "1.0.4",
G
cookie  
Guy Bedford 已提交
171
    "cookie": "0.4.0",
G
devalue  
Guy Bedford 已提交
172
    "devalue": "2.0.1",
173 174
    "dotenv": "8.2.0",
    "dotenv-expand": "5.1.0",
G
Guy Bedford 已提交
175
    "escape-string-regexp": "2.0.0",
G
etag  
Guy Bedford 已提交
176
    "etag": "1.8.1",
G
fresh  
Guy Bedford 已提交
177
    "fresh": "0.5.2",
G
Guy Bedford 已提交
178
    "gzip-size": "5.1.1",
G
Guy Bedford 已提交
179
    "http-proxy": "1.18.0",
G
Guy Bedford 已提交
180 181
    "is-docker": "2.0.0",
    "is-wsl": "2.1.1",
G
json5  
Guy Bedford 已提交
182
    "json5": "2.1.2",
G
Guy Bedford 已提交
183
    "jsonwebtoken": "8.5.1",
G
Guy Bedford 已提交
184
    "launch-editor": "2.2.1",
G
Guy Bedford 已提交
185
    "lodash.curry": "4.1.1",
G
Guy Bedford 已提交
186
    "lru-cache": "5.1.1",
J
Joe Haddad 已提交
187
    "nanoid": "2.0.3",
G
Guy Bedford 已提交
188 189
    "node-fetch": "2.6.0",
    "ora": "3.4.0",
G
Guy Bedford 已提交
190
    "raw-body": "2.4.0",
G
Guy Bedford 已提交
191
    "recast": "0.18.5",
J
Joe Haddad 已提交
192
    "resolve": "1.11.0",
G
send  
Guy Bedford 已提交
193
    "send": "0.17.1",
G
Guy Bedford 已提交
194
    "source-map": "0.6.1",
G
Guy Bedford 已提交
195 196
    "string-hash": "1.1.3",
    "strip-ansi": "5.2.0",
T
Tim Neutkens 已提交
197
    "taskr": "1.1.0",
G
terser  
Guy Bedford 已提交
198
    "terser": "4.4.2",
199
    "text-table": "0.2.0",
200
    "typescript": "3.7.3",
201
    "unistore": "3.4.1"
202 203
  },
  "engines": {
204
    "node": ">=10.13.0"
T
Tim Neutkens 已提交
205 206
  }
}