-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.73 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.73 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
{
"name": "musescodejs",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/muses-code-js/musescodejs.git",
"author": "ticidesign <ticipp@gmail.com>",
"license": "MIT",
"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",
"lint": "eslint ./site/"
},
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"@apollo/react-ssr": "^3.1.3",
"@emotion/core": "^10.0.28",
"@keystone-alpha/app-next": "^2.1.0",
"@keystone-alpha/email": "^3.0.1",
"@keystonejs/adapter-mongoose": "8.1.3",
"@keystonejs/app-admin-ui": "7.0.4",
"@keystonejs/app-graphql": "5.1.8",
"@keystonejs/auth-password": "5.1.10",
"@keystonejs/fields": "13.0.1",
"@keystonejs/fields-wysiwyg-tinymce": "5.3.1",
"@keystonejs/file-adapters": "7.0.0",
"@keystonejs/keystone": "11.1.3",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"cross-env": "^7.0.2",
"date-fns": "^2.6.0",
"dotenv": "^8.2.0",
"facepaint": "^1.2.1",
"get-contrast": "^2.0.0",
"isomorphic-unfetch": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"react-apollo": "^3.1.5",
"react-toast-notifications": "^2.2.5",
"uuid": "^8.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier",
"eslint",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}