-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
35
36
37
38
{
"name": "eyebrowse",
"description": "An example KeystoneJS project showcasing a simple Todo List with a Keystone StaticApp front-end.",
"private": true,
"version": "5.0.23",
"author": "The KeystoneJS Development Team",
"repository": "https://github.com/keystonejs/keystone/tree/master/packages/create-keystone-app/example-projects/todo",
"homepage": "https://github.com/keystonejs/keystone",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "jest",
"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 keystone create-tables",
"postinstall": "npm run create-tables"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.2.0",
"@keystonejs/adapter-mongoose": "^10.1.1",
"@keystonejs/app-admin-ui": "^7.3.12",
"@keystonejs/app-graphql": "^6.2.0",
"@keystonejs/app-static": "^5.1.3",
"@keystonejs/fields": "^21.0.0",
"@keystonejs/keystone": "^18.0.0",
"axios": "^0.21.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"lodash-es": "^4.17.20"
},
"devDependencies": {
"jest": "^26.6.3"
}
}