forked from eBay/figma-include-accessibility-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.3 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.3 KB
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
{
"name": "figma-include-accessibility-annotations",
"version": "9",
"description": "Include is a tool built to make annotating for accessibility (a11y) easier",
"main": "code.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --mode=development --watch",
"dev": "webpack --mode=development --watch",
"serve": "webpack serve",
"bundle": "webpack --mode=production && node zip.js",
"lint": "eslint ./src",
"docs": "node_modules/.bin/jsdoc --readme DOCS.md -c jsdoc.json"
},
"author": "eBay Design Technology",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.22.5",
"@babel/plugin-transform-react-inline-elements": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@figma/plugin-typings": "^1.31.0",
"@types/node": "^16.7.1",
"adm-zip": "^0.5.9",
"babel-loader": "^8.3.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chalk": "^4.1.2",
"css-loader": "^6.2.0",
"docdash": "^1.2.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.3.2",
"jsdoc": "~3.6.3",
"prettier": "^2.8.8",
"sass": "^1.49.8",
"sass-loader": "^12.6.0",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"dotenv": "^16.0.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dev-utils": "^12.0.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0"
},
"engines": {
"node": ">=16.13.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}