-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.16 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.16 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
{
"name": "@keystonejs/example-projects-starter",
"description": "An example KeystoneJS project with a User list and Authentication.",
"private": true,
"version": "5.0.6",
"author": "The KeystoneJS Development Team",
"repository": "https://github.com/keystonejs/keystone/tree/master/packages/create-keystone-app/example-projects/starter",
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
"build": "cross-env NODE_ENV=production keystone build",
"start": "cross-env NODE_ENV=production keystone start",
"create-tables": "keystone create-tables"
},
"dependencies": {
"@keystonejs/adapter-mongoose": "^8.0.0",
"@keystonejs/app-admin-ui": "^5.9.5",
"@keystonejs/app-graphql": "^5.1.5",
"@keystonejs/app-static": "^5.1.2",
"@keystonejs/auth-password": "^5.1.5",
"@keystonejs/field-content": "^5.4.5",
"@keystonejs/fields": "^9.0.0",
"@keystonejs/file-adapters": "^6.0.1",
"@keystonejs/keystone": "^8.0.0",
"cross-env": "^7.0.0",
"stream": "^0.0.2"
}
}