-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 980 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 980 Bytes
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
{
"name": "eslint-prettier-boilerplate-configs",
"version": "1.0.0",
"description": "A repo to use to quickly setup ESLint using the Prettier Formatter and AirBNB code styling in VS Code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"browserify": "echo browserify index.js -o bundle.js"
},
"keywords": [
"eslint",
"prettier"
],
"author": "Clayton Berger",
"license": "ISC",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.0",
"prettier": "^2.0.5"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"mocha": "^8.1.0"
}
}