-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.96 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"scripts": {
"dev": "webpack serve --mode=development --node-env=development ",
"build": "webpack --mode=production --node-env=production",
"lint": "prettier --write . && eslint --fix ./src --ext .js webpack.config.js",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"dependencies": {
"angular": "1.8.3",
"angular-animate": "1.8.3",
"angular-localforage": "^1.3.8",
"angular-sanitize": "1.8.3",
"angular-ui-router": "0.4.3",
"cheerio": "^1.0.0-rc.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"csshake": "git+https://github.com/gaplo917/csshake#ae8bceb1999049ecfc789f6f0919121d809560ed",
"localforage": "^1.7.3",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"ng-toast": "^2.0.0",
"rx-angular": "^1.1.3",
"showdown": "^1.9.0",
"sweetalert2": "^7.33.1",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.21.5",
"@webpack-cli/generators": "^3.0.3",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.8",
"remove-files-webpack-plugin": "^1.5.0",
"sass": "^1.62.1",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.8",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.0",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
}
}