-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 KB
/
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
30
31
32
33
34
{
"name": "@keystonejs/example-projects-starter",
"description": "An example KeystoneJS project with a User list and Authentication.",
"private": true,
"version": "5.0.21",
"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": "cross-env CREATE_TABLES=true keystone create-tables"
},
"dependencies": {
"@apollo/client": "^3.3.6",
"@keystonejs/adapter-knex": "^12.0.2",
"@keystonejs/app-admin-ui": "^7.3.9",
"@keystonejs/app-graphql": "^6.1.3",
"@keystonejs/auth-password": "^5.1.17",
"@keystonejs/fields": "^20.0.0",
"@keystonejs/keystone": "^17.1.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"knex": "^0.21.12",
"react-spinners": "^0.10.4",
"sweetalert2": "^10.12.5"
}
}