package.json 3.5 KB
Newer Older
N
nkzawa 已提交
1
{
G
Guillermo Rauch 已提交
2
  "name": "next",
G
Guillermo Rauch 已提交
3
  "version": "2.0.0-beta.39",
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",
N
nkzawa 已提交
8 9 10
  "publishConfig": {
    "tag": "beta"
  },
N
nkzawa 已提交
11
  "files": [
12
    "dist",
13
    "babel.js",
14 15
    "link.js",
    "css.js",
N
nkzawa 已提交
16 17
    "head.js",
    "document.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": "fly",
    "release": "fly release",
    "pretestonly": "fly pretest",
A
Arunoda Susiripala 已提交
29
    "testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
30
    "posttestonly": "fly 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": "npm run lint"
N
nkzawa 已提交
37
  },
L
Leo Lamprecht 已提交
38
  "standard": {
39 40 41 42
    "parser": "babel-eslint",
    "ignore": [
      "**/node_modules/**"
    ]
L
Leo Lamprecht 已提交
43
  },
N
nkzawa 已提交
44
  "dependencies": {
45
    "ansi-html": "0.0.7",
46
    "babel-core": "6.24.0",
47
    "babel-generator": "6.24.0",
48
    "babel-loader": "6.4.1",
49
    "babel-plugin-module-resolver": "2.5.0",
L
Leo Lamprecht 已提交
50
    "babel-plugin-react-require": "3.0.0",
51
    "babel-plugin-transform-class-properties": "6.22.0",
52
    "babel-plugin-transform-es2015-modules-commonjs": "6.24.0",
53
    "babel-plugin-transform-object-rest-spread": "6.22.0",
L
Leo Lamprecht 已提交
54 55
    "babel-plugin-transform-react-jsx-source": "6.22.0",
    "babel-plugin-transform-react-remove-prop-types": "0.3.2",
56
    "babel-plugin-transform-runtime": "6.22.0",
57
    "babel-preset-latest": "6.24.0",
58
    "babel-preset-react": "6.23.0",
59
    "babel-runtime": "6.23.0",
60
    "case-sensitive-paths-webpack-plugin": "1.1.4",
61
    "cross-spawn": "5.1.0",
N
nkzawa 已提交
62
    "del": "2.2.2",
63
    "friendly-errors-webpack-plugin": "1.5.0",
N
nkzawa 已提交
64
    "glob-promise": "3.1.0",
N
nkzawa 已提交
65
    "htmlescape": "1.1.1",
66
    "http-status": "1.0.1",
C
Chua Kiem Fai 已提交
67
    "is-windows-bash": "1.0.3",
68
    "json-loader": "0.5.4",
69
    "loader-utils": "1.1.0",
N
nkzawa 已提交
70
    "minimist": "1.2.0",
71
    "mitt": "1.1.0",
72
    "mkdirp-then": "1.2.0",
L
Leo Lamprecht 已提交
73
    "mv": "2.1.1",
74
    "mz": "2.6.0",
N
nkzawa 已提交
75
    "path-match": "1.2.4",
76
    "pkg-up": "1.0.0",
N
nkzawa 已提交
77
    "react-hot-loader": "3.0.0-beta.6",
78
    "send": "0.15.1",
79
    "source-map-support": "0.4.13",
N
nkzawa 已提交
80
    "strip-ansi": "3.0.1",
81
    "styled-jsx": "0.5.7",
82
    "touch": "1.0.0",
83
    "unfetch": "2.1.2",
N
nkzawa 已提交
84
    "url": "0.11.0",
85
    "uuid": "3.0.1",
86
    "webpack": "2.2.1",
87
    "webpack-dev-middleware": "1.10.1",
88
    "webpack-hot-middleware": "2.17.1",
89
    "write-file-webpack-plugin": "4.0.0"
N
nkzawa 已提交
90 91
  },
  "devDependencies": {
92
    "babel-eslint": "7.1.1",
L
Leo Lamprecht 已提交
93
    "babel-jest": "18.0.0",
94
    "babel-plugin-istanbul": "4.0.0",
95
    "babel-plugin-transform-remove-strict-mode": "0.0.2",
96
    "babel-preset-es2015": "6.24.0",
97
    "benchmark": "2.1.3",
L
Leo Lamprecht 已提交
98
    "cheerio": "0.22.0",
99
    "chromedriver": "2.28.0",
100
    "coveralls": "2.11.16",
101
    "cross-env": "3.2.4",
102
    "fly": "2.0.5",
L
Leo Lamprecht 已提交
103 104
    "fly-babel": "2.1.1",
    "fly-clear": "1.0.1",
105
    "fly-esnext": "2.0.1",
L
Leo Lamprecht 已提交
106
    "fly-watch": "1.1.1",
107
    "husky": "0.13.3-0",
108
    "jest-cli": "19.0.1",
L
Leo Lamprecht 已提交
109
    "node-fetch": "1.6.3",
110
    "node-notifier": "5.1.2",
L
Leo Lamprecht 已提交
111
    "nyc": "10.0.0",
112 113
    "react": "15.4.2",
    "react-dom": "15.4.2",
114
    "standard": "9.0.0",
L
Leo Lamprecht 已提交
115
    "wd": "1.1.3"
116 117
  },
  "peerDependencies": {
118 119
    "react": "^15.4.2",
    "react-dom": "^15.4.2"
120 121
  },
  "jest": {
A
Arunoda Susiripala 已提交
122
    "testEnvironment": "node",
123
    "roots": [
A
Arunoda Susiripala 已提交
124 125
      "test/"
    ]
N
nkzawa 已提交
126
  }
N
nkzawa 已提交
127
}