-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "graphql-pokeapi",
"description": "GraphQL implementation of pokeapi.co",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"css": "tailwindcss build -i public/styles.css -o public/output.css",
"css:min": "cleancss -o public/output.min.css public/output.css",
"build:html": "ejs public/index.ejs -f public/data.json -o public/index.html",
"build": "yarn css && yarn css:min && yarn build:html",
"serve": "yarn build && serve public",
"start": "vercel dev",
"deploy": "vercel --prod",
"prepare": "husky install"
},
"devDependencies": {
"@vercel/node": "^1.12.1",
"clean-css-cli": "^5.4.2",
"ejs": "^3.1.10",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"serve": "^13.0.2",
"tailwindcss": "^2.2.19"
},
"dependencies": {
"@saeris/apollo-server-vercel": "^0.4.0",
"graphql": "^15.7.2",
"graphql-type-json": "^0.3.2",
"node-fetch": "^2.6.7",
"pokedex-promise-v2": "^3.3.2",
"vercel": "^23.1.2",
"vercel-node-server": "^2.2.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{js,ts,css,md}": "prettier --write"
},
"engines": {
"node": ">= 12.x"
},
"repository": {
"type": "git",
"url": "https://github.com/mazipan/graphql-pokeapi.git"
},
"bugs": {
"url": "https://github.com/mazipan/graphql-pokeapi/issues"
}
}