forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
140 lines (140 loc) · 4.51 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "keystone",
"version": "5.0.0",
"author": "Jed Watson",
"license": "MIT",
"scripts": {
"coverage": "NODE_ENV=test jest --coverage --collectCoverageFrom=packages/**/*.{js}",
"cypress:run": "status=0; bolt w @keystonejs/cypress-project-basic run cypress:run || status=$?; bolt w @keystonejs/cypress-project-login run cypress:run || status=$?; bolt w @keystonejs/cypress-project-twitter-login run cypress:run || status=$?; bolt w @keystonejs/cypress-project-access-control run cypress:run || status=$?; exit $status",
"format:file": "prettier --write",
"format": "prettier --write \"**/*.js\" \"**/*.md\"",
"fresh": "bolt ws exec -- rm -rf node_modules && rm -rf node_modules && bolt",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --list-different \"**/*.js\"",
"lint": "yarn lint:prettier && yarn lint:eslint",
"start": "cd projects/basic && yarn start",
"test": "yarn lint && yarn test:unit && yarn cypress:run",
"test:unit": "DISABLE_LOGGING=true NODE_ENV=test jest",
"test:unit:debug": "NODE_ENV=test node --inspect-brk `which jest` --runInBand"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"apollo-errors": "^1.9.0",
"apollo-link": "^1.0.6",
"apollo-link-error": "^1.0.3",
"apollo-link-state": "^0.4.0",
"apollo-server-express": "^2.0.4",
"apollo-upload-client": "^8.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-emotion": "^9.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.2",
"cloudinary": "^1.11.0",
"cookie": "^0.3.1",
"cookie-signature": "^1.1.0",
"cors": "^2.8.4",
"cross-fetch": "^2.2.0",
"cuid": "^2.1.1",
"date-fns": "^1.29.0",
"dotenv-safe": "^6.0.0",
"dumb-passwords": "^0.2.1",
"emotion": "^9.1.1",
"eslint": "^5.4.0",
"eslint-junit": "^1.0.1",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-react": "^7.11.1",
"execa": "0.10.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"falsey": "^1.0.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.77.0",
"focus-trap": "^2.4.3",
"fs-extra": "^7.0.0",
"graphql": "^0.13.2",
"graphql-playground-html": "^1.6.0",
"graphql-tag": "^2.8.0",
"graphql-tools": "^3.0.0",
"graphql-type-json": "^0.2.1",
"html-webpack-plugin": "^3.2.0",
"inflection": "^1.12.0",
"jest": "^23.4.1",
"jest-junit": "^4.0.0",
"kalendaryo": "^1.10.0",
"loader-utils": "^1.1.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.set": "^4.3.2",
"mkdirp": "^0.5.1",
"mongoose": "^5.2.7",
"oauth-libre": "^0.9.17",
"octicons": "^7.2.0",
"p-settle": "^2.1.0",
"passport": "^0.4.0",
"passport-twitter": "^1.0.4",
"pino": "5.0.0-rc.4",
"pluralize": "^7.0.0",
"prettier": "^1.14.2",
"prop-types": "^15.6.1",
"raf-schd": "^4.0.0",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-copy-to-clipboard": "^5.0.1",
"react-document-title": "^2.0.3",
"react-dom": "^16.4.2",
"react-emotion": "^9.1.1",
"react-media": "^1.8.0",
"react-node-resolver": "^2.0.0",
"react-pseudo-state": "^1.0.1",
"react-radios": "^1.1.0",
"react-router-dom": "^4.2.2",
"react-scrolllock": "^3.0.1",
"react-select": "^2.0.0",
"react-toast-notifications": "^1.2.0",
"react-transition-group": "^2.3.1",
"testcheck": "^1.0.0-rc.2",
"to-pascal-case": "^1.0.0",
"webpack": "^4.5.0",
"webpack-dev-middleware": "^3.1.2"
},
"prettier": {
"proseWrap": "preserve",
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
},
"bolt": {
"workspaces": [
"packages/*",
"projects/*"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./jest/setup.js"
},
"devDependencies": {
"apollo-fetch": "^0.7.0",
"cypress": "^3.1.0",
"eslint-plugin-cypress": "^2.0.1",
"fast-memoize": "^2.4.0",
"junit-merge": "^1.3.0",
"lodash.omitby": "^4.6.0",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"mongodb": "^3.1.3",
"mongodb-memory-server": "^2.0.0",
"pm2": "^2.10.4",
"start-server-and-test": "^1.5.0",
"supertest": "^3.1.0"
}
}