-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.93 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
45
46
47
48
49
50
{
"name": "design-system-meetup-intro-slides",
"version": "0.1.0",
"description": "Design Systems Meetup - Intro slides",
"homepage": "https://designsystemmeetup.github.io/intro-slides/",
"author": {
"name": "Dominik Wilkowski",
"email": "[email protected]",
"web": "http://dominik-wilkowski.com/"
},
"scripts": {
"intro": "cfonts \"Slides\" -c white,blue -s -a center && cfonts \"~ Build ready ~\" -f console -a center -s -c candy",
"build:sass": "mkdir -p assets/css/ && node-sass --output-style compressed -o assets/css src/sass/style.scss",
"build:autoprefix": "postcss assets/css/style.css -u autoprefixer -r --no-map",
"build:css": "npm run build:sass && npm run build:autoprefix",
"build:concat": "concat-cli -f src/js/*.js -o assets/js/script.min.js",
"build:uglify": "uglifyjs assets/js/script.min.js --compress --output assets/js/script.min.js",
"build:js": "npm run build:concat && npm run build:uglify",
"build": "npm run build:css && npm run build:js && npm run intro",
"server": "browser-sync start --server './' --files './index.html' 'assets/'",
"watch:sass": "onchange 'src/sass/*.scss' 'src/sass/**/*.scss' -- npm run build:css",
"watch:js": "onchange 'src/js/*.js' 'src/js/**/*.js' -- npm run build:js",
"watch": "npm run build && npm-run-all --parallel server watch:*",
"nuke": "rm -rf node_modules && rm yarn.lock",
"test": "echo 'Error: no test specified' && exit 0"
},
"repository": {
"type": "git",
"url": "git://github.com/DesignSystemMeetup/intro-slides.git"
},
"dependencies": {
"autoprefixer": "^9.8.5",
"browser-sync": "^2.26.9",
"cfonts": "^2.8.6",
"concat-cli": "^4.0.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"onchange": "^7.0.2",
"postcss-cli": "^7.1.1",
"uglify-js": "^3.10.0"
},
"devDependencies": {},
"licenses": [
{
"type": "GPL-3.0",
"url": "https://github.com/DesignSystemMeetup/intro-slides/blob/master/LICENSE"
}
],
"license": "GPL-3.0"
}