package.json 4.1 KB
Newer Older
N
nkzawa 已提交
1
{
G
Guillermo Rauch 已提交
2
  "name": "next",
T
Tim Neutkens 已提交
3
  "version": "4.1.4-canary.2",
L
Leo Lamprecht 已提交
4
  "description": "Minimalistic framework for server-rendered React applications",
N
Naoyuki Kanezawa 已提交
5
  "main": "./dist/server/next.js",
N
nkzawa 已提交
6
  "license": "MIT",
7
  "repository": "zeit/next.js",
8 9
  "bugs": "https://github.com/zeit/next.js/issues",
  "homepage": "https://github.com/zeit/next.js",
N
nkzawa 已提交
10
  "files": [
11
    "dist",
12
    "babel.js",
13 14
    "link.js",
    "css.js",
N
nkzawa 已提交
15 16
    "head.js",
    "document.js",
17
    "dynamic.js",
18
    "prefetch.js",
N
Naoyuki Kanezawa 已提交
19 20
    "router.js",
    "error.js"
N
nkzawa 已提交
21 22 23 24 25
  ],
  "bin": {
    "next": "./dist/bin/next"
  },
  "scripts": {
26 27 28
    "build": "taskr",
    "release": "taskr release",
    "pretestonly": "taskr pretest",
A
Arunoda Susiripala 已提交
29
    "testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
30
    "posttestonly": "taskr posttest",
31 32
    "pretest": "npm run lint",
    "test": "npm run testonly -- --coverage --forceExit --runInBand --verbose --bail",
A
Arunoda Susiripala 已提交
33
    "coveralls": "nyc --instrument=false --source-map=false report --temp-directory=./coverage --reporter=text-lcov | coveralls",
34
    "lint": "standard 'bin/*' 'client/**/*.js' 'examples/**/*.js' 'lib/**/*.js' 'pages/**/*.js' 'server/**/*.js' 'test/**/*.js'",
G
Guillermo Rauch 已提交
35
    "prepublish": "npm run release",
36
    "precommit": "lint-staged"
N
nkzawa 已提交
37
  },
L
Leo Lamprecht 已提交
38
  "standard": {
39 40
    "parser": "babel-eslint",
    "ignore": [
T
Tim Neutkens 已提交
41 42
      "**/node_modules/**",
      "**/examples/**/lib/**"
43
    ]
L
Leo Lamprecht 已提交
44
  },
45 46 47 48
  "lint-staged": {
    "*.js": "standard",
    "bin/*": "standard"
  },
N
nkzawa 已提交
49
  "dependencies": {
50
    "ansi-html": "0.0.7",
T
Tim Neutkens 已提交
51 52 53 54
    "babel-core": "6.26.0",
    "babel-generator": "6.26.0",
    "babel-loader": "7.1.2",
    "babel-plugin-module-resolver": "2.7.1",
L
Leo Lamprecht 已提交
55
    "babel-plugin-react-require": "3.0.0",
A
Arunoda Susiripala 已提交
56
    "babel-plugin-syntax-dynamic-import": "6.18.0",
57
    "babel-plugin-transform-class-properties": "6.24.1",
T
Tim Neutkens 已提交
58 59
    "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
    "babel-plugin-transform-object-rest-spread": "6.26.0",
L
Leo Lamprecht 已提交
60
    "babel-plugin-transform-react-jsx-source": "6.22.0",
T
Tim Neutkens 已提交
61 62
    "babel-plugin-transform-react-remove-prop-types": "0.4.8",
    "babel-plugin-transform-runtime": "6.23.0",
63
    "babel-preset-env": "1.6.0",
64
    "babel-preset-react": "6.24.1",
T
Tim Neutkens 已提交
65 66
    "babel-runtime": "6.26.0",
    "babel-template": "6.26.0",
67
    "case-sensitive-paths-webpack-plugin": "2.1.1",
68
    "cross-spawn": "5.1.0",
69
    "del": "3.0.0",
T
Tim Neutkens 已提交
70 71 72 73 74 75
    "etag": "1.8.1",
    "fresh": "0.5.2",
    "friendly-errors-webpack-plugin": "1.6.1",
    "glob": "7.1.2",
    "glob-promise": "3.2.0",
    "hoist-non-react-statics": "2.3.1",
N
nkzawa 已提交
76
    "htmlescape": "1.1.1",
77
    "http-status": "1.0.1",
T
Tim Neutkens 已提交
78
    "json-loader": "0.5.7",
79
    "loader-utils": "1.1.0",
T
Tim Neutkens 已提交
80
    "md5-file": "3.2.3",
N
nkzawa 已提交
81
    "minimist": "1.2.0",
82
    "mkdirp-then": "1.2.0",
L
Leo Lamprecht 已提交
83
    "mv": "2.1.1",
T
Tim Neutkens 已提交
84
    "mz": "2.7.0",
N
nkzawa 已提交
85
    "path-match": "1.2.4",
86
    "pkg-up": "2.0.0",
T
Tim Neutkens 已提交
87
    "prop-types": "15.6.0",
88
    "prop-types-exact": "1.1.1",
89
    "react-hot-loader": "3.1.1",
90
    "recursive-copy": "2.0.6",
91
    "send": "0.16.1",
T
Tim Neutkens 已提交
92 93
    "source-map-support": "0.4.18",
    "strip-ansi": "4.0.0",
T
Tim Neutkens 已提交
94
    "styled-jsx": "2.1.1",
95
    "touch": "3.1.0",
96
    "unfetch": "3.0.0",
N
nkzawa 已提交
97
    "url": "0.11.0",
98
    "uuid": "3.1.0",
99
    "walk": "2.3.9",
T
Tim Neutkens 已提交
100 101 102 103
    "webpack": "3.6.0",
    "webpack-dev-middleware": "1.12.0",
    "webpack-hot-middleware": "2.19.1",
    "write-file-webpack-plugin": "4.2.0",
104
    "xss-filters": "1.2.7"
N
nkzawa 已提交
105 106
  },
  "devDependencies": {
T
Tim Neutkens 已提交
107 108 109 110 111 112 113
    "@taskr/babel": "1.1.0",
    "@taskr/clear": "1.1.0",
    "@taskr/esnext": "1.1.0",
    "@taskr/watch": "1.1.0",
    "babel-eslint": "8.0.1",
    "babel-jest": "21.2.0",
    "babel-plugin-istanbul": "4.1.5",
114
    "babel-plugin-transform-remove-strict-mode": "0.0.2",
115
    "babel-preset-es2015": "6.24.1",
116
    "benchmark": "2.1.4",
L
Leo Lamprecht 已提交
117
    "cheerio": "0.22.0",
T
Tim Neutkens 已提交
118
    "chromedriver": "2.32.3",
119
    "coveralls": "2.13.1",
T
Tim Neutkens 已提交
120 121 122
    "cross-env": "5.0.5",
    "express": "4.15.5",
    "fkill": "5.1.0",
123
    "husky": "0.14.3",
T
Tim Neutkens 已提交
124 125 126
    "jest-cli": "21.2.0",
    "lint-staged": "4.2.3",
    "node-fetch": "1.7.3",
127
    "node-notifier": "5.1.2",
T
Tim Neutkens 已提交
128
    "nyc": "11.2.1",
129
    "portfinder": "1.0.13",
K
Kenny Smith 已提交
130 131
    "react": "16.0.0",
    "react-dom": "16.0.0",
132
    "standard": "9.0.2",
T
Tim Neutkens 已提交
133 134
    "taskr": "1.1.0",
    "wd": "1.4.1"
135 136
  },
  "peerDependencies": {
K
Kenny Smith 已提交
137 138
    "react": "^16.0.0",
    "react-dom": "^16.0.0"
139 140
  },
  "jest": {
A
Arunoda Susiripala 已提交
141
    "testEnvironment": "node",
142
    "roots": [
A
Arunoda Susiripala 已提交
143 144
      "test/"
    ]
N
nkzawa 已提交
145
  }
N
nkzawa 已提交
146
}