-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
39
40
41
42
{
"name": "sass",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./index.js",
"client": "nodemon -e js,hbs,json,css ./index.js",
"watch": "webpack --watch",
"sass:build": "sass sсss:public/css",
"sass:watch": "sass --watch src:public/dist/css",
"dev": "run-p sass:watch client"
},
"dependencies": {
"@babel/core": "^7.21.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"connect-livereload": "^0.6.1",
"cookie-parser": "~1.4.4",
"css-loader": "^6.7.1",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"express": "~4.16.1",
"express-handlebars": "^6.0.7",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"livereload": "^0.9.3",
"morgan": "~1.9.1",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-hbs": "^1.0.1",
"sass": "^1.32.8",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2"
}
}