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