-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "figmint",
"version": "0.8.1",
"description": "Sync Between Figma and Your Javascript Project",
"repository": "https://github.com/tiltshift/figmint",
"license": "MIT",
"bin": {
"figmint": "./bin/figmint.js"
},
"main": "bin/figmint.js",
"files": [
"bin"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,ts,tsx}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"camelcase": "^6.0.0",
"figma-js": "^1.11.0",
"rimraf": "^3.0.2",
"utils": "^0.3.1"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/prettier": "^1.19.0",
"@types/react": "^16.9.17",
"@types/rimraf": "^2.0.3",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"cosmiconfig": "^6.0.0",
"eslint": "6.x",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "3.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "1.x",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"image-type": "^4.1.0",
"ink": "^2.6.0",
"ink-box": "^1.0.0",
"ink-gradient": "^1.0.0",
"ink-spinner": "^3.0.1",
"lint-staged": "^10.2.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"react": "^16.12.0",
"tinycolor2": "^1.4.1",
"typescript": "^3.9.3",
"use-interval": "^1.2.1"
},
"scripts": {
"build": "parcel build src/index.tsx --out-dir bin --target node --bundle-node-modules --no-source-maps --out-file figmint.js && yarn build-types",
"watch": "parcel watch src/index.tsx --out-dir bin --target node --bundle-node-modules --out-file figmint.js",
"type-check": "tsc --noEmit",
"build-types": "tsc src/utils/types.ts --outDir bin --declaration --emitDeclarationOnly",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"gh-pages": "gh-pages -d example/dist -m \"Update Github pages\"",
"release": "yarn build && yarn publish"
}
}