forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "next",
"version": "2.0.1",
"description": "Minimalistic framework for server-rendered React applications",
"main": "./dist/server/next.js",
"license": "MIT",
"repository": "zeit/next.js",
"publishConfig": {
"tag": "beta"
},
"files": [
"dist",
"babel.js",
"link.js",
"css.js",
"head.js",
"document.js",
"prefetch.js",
"router.js",
"error.js"
],
"bin": {
"next": "./dist/bin/next"
},
"scripts": {
"build": "fly",
"release": "fly release",
"pretestonly": "fly pretest",
"testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
"posttestonly": "fly posttest",
"pretest": "npm run lint",
"test": "npm run testonly -- --coverage --forceExit --runInBand --verbose --bail",
"coveralls": "nyc --instrument=false --source-map=false report --temp-directory=./coverage --reporter=text-lcov | coveralls",
"lint": "standard 'bin/*' 'client/**/*.js' 'examples/**/*.js' 'lib/**/*.js' 'pages/**/*.js' 'server/**/*.js' 'test/**/*.js'",
"prepublish": "npm run release",
"precommit": "lint-staged"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/node_modules/**"
]
},
"lint-staged": {
"*.js": "standard",
"bin/*": "standard"
},
"dependencies": {
"ansi-html": "0.0.7",
"babel-core": "6.24.0",
"babel-generator": "6.24.0",
"babel-loader": "6.4.1",
"babel-plugin-module-resolver": "2.6.2",
"babel-plugin-react-require": "3.0.0",
"babel-plugin-transform-class-properties": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.0",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.3.2",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-latest": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-runtime": "6.23.0",
"case-sensitive-paths-webpack-plugin": "2.0.0",
"cross-spawn": "5.1.0",
"del": "2.2.2",
"friendly-errors-webpack-plugin": "1.5.0",
"glob-promise": "3.1.0",
"htmlescape": "1.1.1",
"http-status": "1.0.1",
"is-windows-bash": "1.0.3",
"json-loader": "0.5.4",
"loader-utils": "1.1.0",
"md5-file": "3.1.1",
"minimist": "1.2.0",
"mitt": "1.1.0",
"mkdirp-then": "1.2.0",
"mv": "2.1.1",
"mz": "2.6.0",
"path-match": "1.2.4",
"pkg-up": "1.0.0",
"react-hot-loader": "3.0.0-beta.6",
"send": "0.15.1",
"source-map-support": "0.4.14",
"strip-ansi": "3.0.1",
"styled-jsx": "0.5.7",
"touch": "1.0.0",
"unfetch": "2.1.2",
"url": "0.11.0",
"uuid": "3.0.1",
"webpack": "2.3.3",
"webpack-dev-middleware": "1.10.1",
"webpack-hot-middleware": "2.17.1",
"write-file-webpack-plugin": "4.0.0"
},
"devDependencies": {
"babel-eslint": "7.2.0",
"babel-jest": "18.0.0",
"babel-plugin-istanbul": "4.1.1",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "6.24.0",
"benchmark": "2.1.4",
"cheerio": "0.22.0",
"chromedriver": "2.28.0",
"coveralls": "2.13.0",
"cross-env": "4.0.0",
"fly": "2.0.5",
"fly-babel": "2.1.1",
"fly-clear": "1.0.1",
"fly-esnext": "2.0.1",
"fly-watch": "1.1.1",
"husky": "0.13.3",
"jest-cli": "19.0.1",
"lint-staged": "^3.4.0",
"node-fetch": "1.6.3",
"node-notifier": "5.1.2",
"nyc": "10.2.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"standard": "9.0.2",
"wd": "1.2.0"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"jest": {
"testEnvironment": "node",
"roots": [
"test/"
]
}
}