forked from LgHS/site-web-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.58 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
{
"name": "lghs-website",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"scss": "node-sass --output-style compressed -o files/dist/css src/assets/scss",
"svg": "svgo -f src/assets/svg -o files/dist/svg",
"img": "imagemin src/assets/images files/dist/images -p",
"watch:css": "onchange 'src/assets/scss/**/*.scss' -- npm run scss",
"watch": "parallelshell 'npm run build' 'npm run watch:css'",
"fa:copy-fonts": "cp node_modules/font-awesome/fonts/fontawesome-webfont.* files/dist/fonts",
"favicon:generate": "real-favicon generate favicon-config.json favicon-data.json files/",
"favicon:inject": "real-favicon inject favicon-data.json files/ files/index.html",
"favicon": "npm run favicon:generate && npm run favicon:inject",
"build": "npm run scss && npm run svg && npm run img && npm run favicon && npm run fa:copy-fonts",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LgHS/Site-Web-Front.git"
},
"author": "Jonathan Berger <jonathan@paperpixel.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/LgHS/Site-Web-Front/issues"
},
"homepage": "https://github.com/LgHS/Site-Web-Front#readme",
"dependencies": {
"bootstrap-sass": "^3.3.6"
},
"devDependencies": {
"browser-sync": "^2.11.1",
"cli-real-favicon": "0.0.5",
"font-awesome": "^4.5.0",
"imagemin-cli": "^2.1.0",
"mousetrap": "^1.5.3",
"node-sass": "^3.4.2",
"onchange": "^2.0.0",
"parallelshell": "^2.0.0",
"svgo": "^0.6.1"
}
}