-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.7 KB
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
{
"name": "@domparty/nextjs-core",
"version": "0.0.0",
"description": "A custom Next.JS implementation with some nice extra's",
"main": "src/core.js",
"author": "Glenn de Haan <glenn@dehaan.cloud>",
"contributors": [
"Colin van Eenige <cvaneenige@gmail.com>",
"Marnix Janssen <dev.marnix@gmail.com>"
],
"license": "MIT",
"scripts": {
"pretest": "npm run cleanup && npm run prestart",
"test": "NODE_ENV=test NODE_TEST=true mocha -R spec --recursive './{,!(node_modules)/**}/*.test.js'",
"posttest": "npm run cleanup",
"prestart": "NODE_ENV=production next build ./debug",
"start": "npm run lint && cd debug && NODE_ENV=test node ./server.js",
"cleanup": "rm -rf ./debug/.next && rm -rf ./debug/log",
"lint": "eslint ./src"
},
"engines": {
"node": "^10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/domparty/nextjs-core.git"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 9
},
"env": {
"node": true
},
"extends": "eslint:recommended",
"rules": {
"react/prop-types": 0
}
},
"eslintIgnore": [
".next"
],
"dependencies": {
"body-parser": "^1.19.0",
"deepmerge": "^4.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^15.0.0",
"graphql-compose": "^7.14.1",
"graphql-playground-middleware-express": "^1.7.14",
"instant-listen": "^0.1.0",
"jsonschema": "^1.2.6",
"next": "^9.3.5",
"simple-node-logger": "^18.12.24",
"sitemap": "^5.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"request": "^2.88.2",
"should": "^13.2.3"
}
}