-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
131 lines (131 loc) · 4.36 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
{
"name": "figma-graphql",
"version": "1.3.0",
"description": "The reimagined Figma API (super)powered by GraphQL",
"main": "index.js",
"scripts": {
"start": "ts-node --transpile-only ./src/main.ts",
"dev": "ts-node-dev --respawn --transpileOnly ./src/main.ts",
"debug": "ts-node-dev --inspect --respawn ./src/main.ts",
"docs:dev": "docz dev",
"docs:build": "docz build && yarn docs:addcname",
"docs:addcname": "echo \"figma-graphql.party\" > .docz/dist/CNAME",
"docs:deploy": "gh-pages -d .docz/dist",
"format": "prettier --write .",
"test": "jest --no-cache --setupFiles dotenv/config",
"lint": "eslint src/ --ext .ts",
"lint:check": "eslint --print-config . | eslint-config-prettier-check",
"commit": "yarn git-cz",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepublishOnly": "yarn snyk-protect",
"ts:check": "tsc -p tsconfig.json --allowJs false --noEmit"
},
"keywords": [
"figma",
"design",
"tools",
"graphql",
"api"
],
"author": "Bernardo Raposo <[email protected]> (https://github.com/braposo)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/braposo/figma-graphql.git"
},
"dependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/graphql-iso-date": "^3.3.3",
"@types/graphql-resolve-batch": "^1.1.5",
"@types/isomorphic-fetch": "^0.0.35",
"@types/lodash": "^4.14.149",
"apollo-server-express": "^2.12.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"figma-js": "^1.10.0",
"figma-transformer": "^1.0.0",
"graphql": "^15.0.0",
"graphql-iso-date": "^3.6.1",
"graphql-playground-middleware-express": "^1.7.12",
"graphql-resolve-batch": "^1.0.2",
"graphql-tools": "^4.0.7",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"nodemon": "^2.0.3",
"snyk": "^1.305.1",
"ts-node": "^8.8.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/prompt": "^8.3.5",
"@commitlint/travis-cli": "^8.3.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/eslint": "^6.8.0",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/gh-pages": "^2.2.0",
"@types/jest": "^25.2.1",
"@types/prettier": "^2.0.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/semantic-release": "^15.13.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"all-contributors-cli": "^6.14.1",
"codecov": "^3.6.5",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "3.1.0",
"docz": "^2.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"gh-pages": "^2.2.0",
"husky": ">=4.2.5",
"jest": "^25.3.0",
"lint-staged": ">=10.1.3",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"semantic-release": "^17.0.4",
"ts-jest": "^25.3.1",
"ts-node-dev": "^1.0.0-pre.44",
"type-coverage": "^2.4.2",
"types-installer": "^1.6.3",
"typescript": "^3.8.3"
},
"now": {
"alias": "figma-graphql"
},
"lint-staged": {
"*.{ts,css,md}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"snyk": true
}