-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 996 Bytes
/
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
{
"name": "@keystonejs/example-projects-starter",
"description": "An example KeystoneJS project with a User list and Authentication.",
"private": true,
"version": "5.0.1",
"author": "The KeystoneJS Development Team",
"repository": "https://github.com/keystonejs/keystone.git",
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=8.4.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development DISABLE_LOGGING=true keystone dev",
"now-build": "yarn build",
"build": "cross-env NODE_ENV=production keystone build",
"start": "cross-env NODE_ENV=production keystone start"
},
"dependencies": {
"@keystonejs/adapter-mongoose": "^5.1.3",
"@keystonejs/app-admin-ui": "^5.3.0",
"@keystonejs/app-graphql": "^5.0.1",
"@keystonejs/app-static": "^5.0.0",
"@keystonejs/auth-password": "^5.0.1",
"@keystonejs/fields": "^6.0.0",
"@keystonejs/keystone": "^5.3.0",
"cross-env": "^5.2.0"
}
}