-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.03 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
{
"private": true,
"name": "components-as-data-presentation",
"version": "2.4.0",
"scripts": {
"start": "concurrently \"npm:start-functions\" \"npm:start-deck\"",
"start-functions": "yarn netlify-lambda serve functions",
"start-deck": "mdx-deck deck.mdx",
"build": "mdx-deck build deck.mdx; netlify-lambda build functions"
},
"devDependencies": {
"concurrently": "^4.1.1",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"netlify-lambda": "^1.5.0",
"prettier": "1.18.2"
},
"dependencies": {
"apollo-server-lambda": "^2.7.0",
"code-surfer": "2.0.0-alpha.9",
"graphql": "14.4.2",
"mdx-deck": "^2.4.0",
"react-spring": "8.0.25"
},
"keywords": [
"api",
"graphql",
"rest",
"mdx-deck",
"react"
],
"description": "Components as Data: A Cross Platform GraphQL Powered Component API",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,mdx}": [
"prettier --write",
"git add"
]
}
}