-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.42 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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",
"config": {
"prettier": "--config ./.prettierrc ./**/*.{js,md,mdx}"
},
"scripts": {
"dev": "cross-env PORT=4000 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 .",
"format": "yarn prettier",
"prettier": "prettier --write $npm_package_config_prettier",
"format:check": "prettier --check $npm_package_config_prettier"
},
"dependencies": {
"@apollo/client": "^3.3.11",
"@apollo/react-hooks": "4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@babel/preset-react": "^7.12.13",
"@emotion/babel-plugin": "^11.2.0",
"@emotion/react": "^11.1.5",
"@keystone-6/auth": "^1.0.2",
"@keystone-6/core": "^1.0.1",
"@keystone-6/fields-document": "^1.0.1",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"apollo-upload-client": "^14.1.3",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.1",
"date-fns": "^2.19.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"facepaint": "^1.2.1",
"get-contrast": "^2.0.0",
"graphql-tag": "^2.10.3",
"husky": "^5.1.3",
"isomorphic-unfetch": "^3.0.0",
"lodash.uniqby": "^4.7.0",
"next": "^12.0.7",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-apollo": "^3.1.3",
"react-dom": "^17.0.2",
"react-toast-notifications": "^2.4.3",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@emotion/eslint-plugin": "^11.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-emotion": "^11.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^24.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"typescript": "^4.5.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier",
"eslint",
"git add"
]
}
}