-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "lucas.ninja",
"version": "1.0.0",
"description": "Lucas new blog",
"main": "deploy.js",
"scripts": {
"start": "npm run css && npm-run-all -p css-watch jekyll",
"css": "postcss assets/css/main.css -o _includes/main.css",
"css-watch": "npm run css -- -w true",
"jekyll": "bundle exec jekyll server --drafts",
"build": "bundle exec jekyll build",
"browsersync": "browser-sync start --proxy localhost:4000 --files='_site'",
"deploy": "npm run build && node deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgtLucas/lucas.ninja.git"
},
"author": "Lucas",
"license": "MIT",
"bugs": {
"url": "https://github.com/AgtLucas/lucas.ninja/issues"
},
"homepage": "https://github.com/AgtLucas/lucas.ninja#readme",
"dependencies": {
"suitcss-base": "^5.0.0"
},
"devDependencies": {
"browser-sync": "^2.26.7",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"postcss-focus": "^4.0.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0"
}
}