-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.45 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
{
"name": "sass",
"version": "1.0.0",
"private": true,
"scripts": {
"client": "nodemon -e js,hbs,json,css ./index.js",
"client:build": "node ./index.js",
"webpack:watch": "webpack --watch",
"webpack:build": "webpack --config webpack.config.js",
"sass:build": "sass src:public/dist/css",
"sass:watch": "sass --watch src:public/dist/css",
"start": "run-p webpack:build sass:build client:build",
"dev": "run-p sass:watch client webpack:watch"
},
"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.88.2",
"webpack-cli": "^4.9.2",
"concurrently": "^8.2.0",
"glob": "^10.3.3",
"webpack-dev-middleware": "^6.1.1",
"webpack-hot-middleware": "^2.25.4"
},
"devDependencies": {}
}