-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
74 lines (74 loc) · 2.42 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
{
"name": "figma-include-accessibility-annotations",
"version": "14",
"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",
"lint-scss": "stylelint \"**/*.scss\"",
"docs": "node_modules/.bin/jsdoc --readme DOCS.md -c jsdoc.json"
},
"author": "eBay Design Technology",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.23.3",
"@babel/plugin-transform-react-inline-elements": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.2",
"adm-zip": "^0.5.10",
"babel-loader": "^9.1.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chalk": "^4.1.2",
"css-loader": "^6.8.1",
"docdash": "^1.2.0",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.5.3",
"jsdoc": "~3.6.3",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^4.0.2",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"dotenv": "^16.3.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"engines": {
"node": ">=18.18.2"
}
}