-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "falcon-motors-agency",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch:sass": "node-sass sass/main.scss css/style.css -w",
"live-server": "live-server",
"start-coding": "npm-run-all --parallel watch:sass live-server",
"compile:sass": "node-sass sass/main.scss css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.comp.css -o css/style.prefix.css",
"compress:css": "node-sass css/style.prefix.css css/style.css --output-style compressed",
"build": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/othmanekahtal/falcon-motors-agency.git"
},
"keywords": [
"falcon",
"motors",
"agency",
"rental cars agency"
],
"author": "othmane kahtal",
"license": "ISC",
"bugs": {
"url": "https://github.com/othmanekahtal/falcon-motors-agency/issues"
},
"homepage": "https://github.com/othmanekahtal/falcon-motors-agency#readme",
"dependencies": {
"concat": "^1.0.3",
"node-sass": "^5.0.0",
"postcss": "^8.2.6"
},
"devDependencies": {
"autoprefixer": "^10.2.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1"
}
}