-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1017 Bytes
/
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
{
"name": "rivpack",
"version": "1.0.0",
"main": "index.js",
"author": "Alexey Rezakov <a.rezakov@rambler-co.ru>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development webpack serve --hot --inline",
"build": "rm -rf dist/* && NODE_ENV=production webpack --mode production --env production"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"eslint-config-rambler": "^0.3.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "5.3.1",
"less": "^4.1.1",
"less-loader": "8.0.0",
"postcss-loader": "5.2.0",
"postcss-preset-env": "^6.7.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"mini-css-extract-plugin": "^1.3.9"
}
}