-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.57 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.57 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
{
"name": "keystone-static-blog",
"version": "0.0.1",
"description": "Starter template to statically generate blogs with Keystone and Next.js",
"repository": "git@github.com:flexdinesh/keystone-static-blog.git",
"author": "Dinesh Pandiyan <flexdinesh@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"keystone-server",
"blog-sleek",
"blog-newspaper",
"blog-cardboard"
],
"scripts": {
"dev": "concurrently --names \"SERVER,APP\" -c \"magenta.bold,green.bold\" \"cd keystone-server && yarn dev\" \"cd blog-sleek && yarn dev\"",
"lint": "eslint . --ext .ts --ext .tsx",
"lint:fix": "eslint . --ext .ts --ext .tsx --fix",
"keystone:docker:build": "docker build -t keystone-server -f keystone-server/Dockerfile .",
"keystone:docker:run": "docker run -p 3000:3000 keystone-server",
"keystone:docker:kill": "docker kill $(docker ps -q)",
"start:keystone": "cd keystone-server && yarn build && yarn start",
"kill:keystone": "kill-port --port 3000",
"export:docker": "node scripts/export.js --docker",
"export": "node scripts/export.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"concurrently": "^7.3.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"kill-port": "^2.0.1",
"prettier": "^2.7.1",
"wait-on": "^6.0.1",
"yargs": "^17.6.0"
},
"resolutions": {
"next": "12.2.4"
}
}