-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "interactive-rating-component",
"version": "0.0.0",
"private": true,
"scripts": {
"compile:sass": "sass --watch src/scss/global.scss:dist/css/styles.css",
"lint:js": "npx eslint src/app.js",
"lint:css": "npx stylelint '**/*.scss'",
"start": "webpack serve --open",
"build": "webpack",
"watch": "webpack --watch"
},
"devDependencies": {
"css-loader": "^6.7.3",
"cypress": "^12.7.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "2.8.4",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-config-standard-scss": "^7.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"bootstrap": "^5.2.3",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3"
}
}