-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.79 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
{
"name": "mofh_antiphishing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"private": true,
"author": "Milad Ahmadi",
"license": "MIT",
"scripts": {
"clean": "rm dist/bundle.js",
"start": "webpack serve --open --mode development",
"build": "webpack --mode production",
"test": "jest"
},
"dependencies": {
"@types/mustache": "^4.1.2",
"dotenv-webpack": "^7.0.3"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@prettier/plugin-pug": "^1.16.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@webdiscus/pug-loader": "^2.3.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"pug": "^3.0.2",
"pug-plugin": "^2.5.1",
"sass": "^1.36.0",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"ts-loader": "^9.2.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.3.5",
"typings-for-css-modules-loader": "^1.7.0",
"url-loader": "^4.1.1",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}