-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "content-protector",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"dev": "webpack --mode=development",
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=development --open",
"lint": "eslint --ext js,jsx src",
"lint:fix": "eslint --ext js,jsx src --fix",
"format": "prettier-eslint --write \"src/**/*.{js,jsx}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.6.2",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"dependencies": {
"devtools-detect": "^4.0.0"
}
}