-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
124 lines (124 loc) · 3.37 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
{
"name": "handoff-app",
"version": "0.15.2",
"description": "Automated documentation toolchain for building client side documentation from figma",
"author ": {
"name": "Convertiv",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Convertiv/handoff-app/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Convertiv/handoff-app.git"
},
"keywords": [
"design",
"documentation",
"figma",
"handoff"
],
"homepage": "https://www.handoff.com/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"handoff-app": "./dist/cli.js"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"start": "node ./dist/cli.js start",
"dev": "node ./dist/cli.js dev",
"build": "tsc",
"build:integration": "node ./dist/cli.js build:integration",
"build:static": "node ./dist/cli.js build:app",
"fetch": "node ./dist/cli.js fetch",
"lint:sass": "stylelint \"src/app/sass/**/*.scss\"",
"lint": "npm run lint:sass && cd src/app && npx next lint",
"release": "np --any-branch",
"test": "npm run lint"
},
"prettier": {
"printWidth": 140,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"@figma-plugin/helpers": "^0.15.2",
"@figma/plugin-typings": "^1.55.1",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.4",
"@popperjs/core": "^2.11.6",
"@types/archiver": "^5.3.1",
"@types/bootstrap": "^5.2.6",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/handlebars": "^4.1.0",
"@types/lodash": "^4.14.185",
"@types/markdown-it": "^12.2.3",
"@types/mdx": "^2.0.13",
"@types/node": "^16.11.59",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-scroll": "^1.8.6",
"@types/react-syntax-highlighter": "^15.5.7",
"@types/refractor": "^3.0.2",
"@types/webpack": "^5.28.0",
"@types/yargs": "^17.0.33",
"archiver": "^5.3.1",
"arg": "^5.0.2",
"autoprefixer": "^10.4.14",
"axios": "^1.7.5",
"babel-runtime": "^6.26.0",
"bootstrap": "5.3.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"clsx": "^2.0.0",
"concurrently": "^7.4.0",
"cross-spawn": "^7.0.3",
"css-loader": "^6.7.2",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"eslint": "^8.23.1",
"eslint-config-next": "^14.2.3",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"html-react-parser": "^3.0.4",
"jquery": "^3.6.1",
"lodash": "^4.17.21",
"memfs": "^4.11.0",
"next": "^14.2.3",
"node-html-parser": "^6.1.4",
"postcss": "^8.4.16",
"postcss-loader": "^7.3.0",
"postcss-scss": "^4.0.5",
"prettier": "^2.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^8.0.3",
"react-scroll": "^1.8.9",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"sass": "1.64.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "^14.12.1",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.3.2",
"typescript": "4.8.3",
"webpack": "^5.75.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"np": "^8.0.4"
}
}