-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cp-events-admin",
"description": "Events, workshops and courses platform admin/backend/cms",
"private": true,
"version": "5.0.7",
"author": "Madhusudhan Srinivasa <madhu@nomaddev.co>",
"repository": "https://github.com/compassionprojects/events-admin/",
"homepage": "https://github.com/compassionprojects/events-admin#readme",
"license": "MIT",
"engines": {
"node": "16.5.0"
},
"scripts": {
"dev": "nodemon --exec 'knex migrate:latest && keystone dev'",
"build": "keystone build",
"start": "knex migrate:latest && keystone start",
"prod": "keystone build && keystone start",
"create-tables": "cross-env keystone create-tables"
},
"dependencies": {
"@keystonejs/adapter-knex": "~13.3.2",
"@keystonejs/app-admin-ui": "^7.5.2",
"@keystonejs/app-graphql": "^6.3.2",
"@keystonejs/auth-password": "^6.1.2",
"@keystonejs/email": "^5.3.2",
"@keystonejs/fields": "^22.1.3",
"@keystonejs/fields-wysiwyg-tinymce": "^5.4.2",
"@keystonejs/file-adapters": "^7.1.2",
"@keystonejs/keystone": "19.3.3",
"@keystonejs/list-plugins": "^8.1.2",
"apollo-server-express": "^2.25.2",
"bcrypt": "^5.0.1",
"connect-session-knex": "^2.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "~10.0.0",
"express-session": "^1.17.2",
"husky": "~4.2.5",
"knex": "^0.95.6",
"lint-staged": "~10.2.11",
"moment": "^2.29.1",
"passport": "^0.4.1",
"passport-magic-link": "^2.1.0",
"postmark": "^2.7.6",
"react": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.9",
"babel-eslint": "~10.1.0",
"eslint": "~7.4.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-prettier": "~3.1.4",
"nodemon": "^2.0.10",
"npm-check-updates": "^11.8.2",
"prettier": "~2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"packageManager": "yarn@1.22.21"
}