UNPKG

1.65 kBJSONView Raw
1{
2 "name": "@kpdecker/next",
3 "version": "24.4.3",
4 "description": "Minimalistic framework for server-rendered React applications",
5 "main": "./node/server/next.js",
6 "license": "MIT",
7 "repository": "zeit/next.js",
8 "bugs": "https://github.com/zeit/next.js/issues",
9 "homepage": "https://github.com/zeit/next.js",
10 "files": [
11 "bin",
12 "node",
13 "browser",
14 "babel.js",
15 "link.js",
16 "head.js",
17 "document.js",
18 "dynamic.js",
19 "router.js",
20 "error.js"
21 ],
22 "bin": {
23 "next-build": "./bin/next-build"
24 },
25 "scripts": {
26 "build": "yarn build:package",
27 "build:package": "node -e 'require(`@healthline/six-million/build-package`)'",
28 "release": "yarn build",
29 "pretest": "npm run lint",
30 "lint": "standard 'bin/*' 'client/**/*.js' 'examples/**/*.js' 'lib/**/*.js' 'server/**/*.js' 'test/**/*.js'",
31 "prepublish": "npm run release",
32 "precommit": "lint-staged"
33 },
34 "standard": {
35 "parser": "babel-eslint",
36 "ignore": [
37 "**/node_modules/**",
38 "**/examples/**/lib/**"
39 ]
40 },
41 "lint-staged": {
42 "*.js": "standard",
43 "bin/*": "standard"
44 },
45 "dependencies": {
46 "del": "^5.1.0",
47 "htmlescape": "^1.1.1",
48 "minimist": "^1.2.0",
49 "mitt": "^1.1.3",
50 "prop-types": "^15.7.0",
51 "querystring": "^0.2.0",
52 "strip-ansi": "^5.1.0"
53 },
54 "devDependencies": {
55 "@healthline/six-million": "5.2.1",
56 "babel-eslint": "10.0.2",
57 "lint-staged": "8.2.1",
58 "node-notifier": "5.4.3",
59 "react": "16.8.6",
60 "react-dom": "16.8.6",
61 "standard": "12.0.1"
62 },
63 "jest": {
64 "testEnvironment": "node",
65 "roots": [
66 "test/"
67 ]
68 }
69}