-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "portfolio-website",
"version": "1.0.0",
"description": "",
"main": "./src/index.js",
"scripts": {
"start": "concurrently \"npm:dev\" \"npm:serve\"",
"dev": "webpack --watch",
"serve": "http-server ./ -p 8080 -o -d false",
"lint:scss": "stylelint css/**/*.scss",
"build": "npx webpack",
"build:scss:dev": "sass --watch --update --style=expanded css:css",
"build:scss:prod": "sass --no-source-map --style=compressed css:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LisaPMunich/Portfolio-Website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LisaPMunich/Portfolio-Website/issues"
},
"homepage": "https://github.com/LisaPMunich/Portfolio-Website#readme",
"devDependencies": {
"concurrently": "^7.3.0",
"css-loader": "^6.7.1",
"sass": "^1.54.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-standard": "^26.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-scss": "^4.3.0",
"swiper": "^8.3.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}