-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "social-links-profile-main",
"version": "1.0.0",
"description": "This is just a training in Front End Mentor website.",
"main": "index.js",
"scripts": {
"dev": "concurrently --prefix-colors=\"magenta,cyan,yellow\" \"npm run postcss:watch\" \"npm run pug-js\" \"npm run server\"",
"postcss:watch": "postcss src/styles/style.css --dir public --use autoprefixer --watch",
"server": "live-server --open=./index.html",
"pug-js": "pug ./src/pug-js/index.pug --out ./ --watch --pretty",
"tags": "git push repo --tags",
"gen:lock": "npm i --package-lock-only"
},
"browserslist": [
"defaults"
],
"keywords": [
"HTML",
"CSS",
"PostCSS",
"Challenge"
],
"author": "Khaled Mohamed",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"live-server": "^1.2.2",
"postcss": "^8.4.35",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.1",
"postcss-preset-env": "^9.4.0",
"pug": "^3.0.2",
"pug-cli": "^1.0.0-alpha6"
},
"dependencies": {
"@csstools/normalize.css": "^12.1.1"
}
}